Commit 52b357dca934dbf3712005f7f9c9ea660b6b63f4
Committed by
Daniela Feitosa
1 parent
ed28f199
Exists in
master
and in
29 other branches
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.
Showing
3 changed files
with
3 additions
and
3 deletions
Show diff stats
app/helpers/profile_editor_helper.rb
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)) %> | ... | ... |