Commit 316ad8fb863415c5733a10f1f37c10d7ed0dcbb3

Authored by Daniela Feitosa
1 parent a67cc855

Returning the old numbers for categories

The numbers of categories are part of the classes names.
Probably, those numbers are being used in some environment and we don't
want to break those environments
Showing 1 changed file with 4 additions and 3 deletions   Show diff stats
app/helpers/categories_helper.rb
@@ -4,11 +4,11 @@ module CategoriesHelper @@ -4,11 +4,11 @@ module CategoriesHelper
4 COLORS = [ 4 COLORS = [
5 [ N_('Do not display at the menu'), nil ], 5 [ N_('Do not display at the menu'), nil ],
6 [ N_('Orange'), 1], 6 [ N_('Orange'), 1],
7 - [ N_('Blue Oil'), 2], 7 + [ N_('Green'), 2],
8 [ N_('Purple'), 3], 8 [ N_('Purple'), 3],
9 - [ N_('Light Brown'), 4], 9 + [ N_('Red'), 4],
10 [ N_('Dark Green'), 5], 10 [ N_('Dark Green'), 5],
11 - [ N_('Green'), 6], 11 + [ N_('Blue Oil'), 6],
12 [ N_('Blue'), 7], 12 [ N_('Blue'), 7],
13 [ N_('Brown'), 8], 13 [ N_('Brown'), 8],
14 [ N_('Light Green'), 9], 14 [ N_('Light Green'), 9],
@@ -17,6 +17,7 @@ module CategoriesHelper @@ -17,6 +17,7 @@ module CategoriesHelper
17 [ N_('Blue Pool'), 12], 17 [ N_('Blue Pool'), 12],
18 [ N_('Beige'), 13], 18 [ N_('Beige'), 13],
19 [ N_('Yellow'), 14], 19 [ N_('Yellow'), 14],
  20 + [ N_('Light Brown'), 15]
20 ] 21 ]
21 22
22 TYPES = [ 23 TYPES = [