Commit 52b357dca934dbf3712005f7f9c9ea660b6b63f4

Authored by Antonio Terceiro
Committed by Daniela Feitosa
1 parent ed28f199

English review

Thanks to professor Fabio Kon from USP for the heads up.

Note that this patch changes only the labels used for the fields, but
does not touch the actual field names.
app/helpers/profile_editor_helper.rb
... ... @@ -18,7 +18,7 @@ module ProfileEditorHelper
18 18 N_('Science Politics'),
19 19 N_('Accounting and Actuarial Science'),
20 20 N_('Morphologic Sciences'),
21   - N_('Computation'),
  21 + N_('Computer Science'),
22 22 N_('Rural Development'),
23 23 N_('Law'),
24 24 N_('Ecology'),
... ...
app/models/person.rb
... ... @@ -156,7 +156,7 @@ class Person < Profile
156 156 N_('Schooling status')
157 157 settings_items :schooling_status
158 158  
159   - N_('Formation'); N_('Custom formation'); N_('Custom area of study');
  159 + N_('Education'); N_('Custom education'); N_('Custom area of study');
160 160 settings_items :formation, :custom_formation, :custom_area_of_study
161 161  
162 162 N_('Contact information'); N_('City'); N_('State'); N_('Country'); N_('Sex'); N_('Zip code')
... ...
app/views/profile_editor/_person_form.rhtml
... ... @@ -44,7 +44,7 @@
44 44 }
45 45 </script>
46 46  
47   -<%= optional_field(@person, 'formation', select_area(_('Formation'), 'profile_data', 'formation', {:class => 'type-select-full-line'})) %>
  47 +<%= optional_field(@person, 'formation', select_area(_('Education'), 'profile_data', 'formation', {:class => 'type-select-full-line'})) %>
48 48  
49 49 <span id='profile_data_custom_formation_span' <%= "style='display:none'" if ! ['Others', nil].include?(@person.formation) %> >
50 50 <%= optional_field(@person, 'custom_formation', f.text_field(:custom_formation)) %>
... ...