Commit 6131d6890d27a40d44e1156210db832c96eeca0b
Committed by
Antonio Terceiro
1 parent
6562d69c
Exists in
master
and in
22 other branches
ActionItem1049: adding strings in terminology
Showing
3 changed files
with
11 additions
and
1 deletions
Show diff stats
app/views/profile_editor/index.rhtml
... | ... | @@ -12,7 +12,7 @@ |
12 | 12 | |
13 | 13 | <%= control_panel_button(_('Profile Info and settings'), 'edit-profile', :controller => 'profile_editor', :action => 'edit') if profile.person? %> |
14 | 14 | <%= control_panel_button(__('Community Info and settings'), 'edit-profile-group', :controller => 'profile_editor', :action => 'edit') if profile.community? %> |
15 | - <%= control_panel_button(__('Enterprise Info Info and settings'), 'edit-profile-enterprise', :controller => 'profile_editor', :action => 'edit') if profile.enterprise? %> | |
15 | + <%= control_panel_button(__('Enterprise Info and settings'), 'edit-profile-enterprise', :controller => 'profile_editor', :action => 'edit') if profile.enterprise? %> | |
16 | 16 | |
17 | 17 | <%= control_panel_button(_('Mail settings'), 'mail', :controller => 'mailconf') if profile.person? && MailConf.enabled? %> |
18 | 18 | ... | ... |
lib/unifreire_terminology.rb
... | ... | @@ -33,6 +33,11 @@ class UnifreireTerminology < Noosfero::Terminology::Custom |
33 | 33 | 'Activate your enterprise' => N_('Activate your institution'), |
34 | 34 | 'Enterprise activation code' => N_('Institution activation code'), |
35 | 35 | 'Disable activation of enterprises' => N_('Disable activation of institutions'), |
36 | + "%s's favorite enterprises" => N_("%s's favorite institutions"), | |
37 | + 'Disable Enterprise' => N_('Disable Institution'), | |
38 | + 'Enable Enterprise' => N_('Enable Institution'), | |
39 | + 'Enterprise Validation' => N_('Institution Validation'), | |
40 | + 'Enterprise Info and settings' => N('Institution Info and settings'), | |
36 | 41 | }) |
37 | 42 | end |
38 | 43 | ... | ... |
lib/zen3_terminology.rb
... | ... | @@ -74,6 +74,11 @@ class Zen3Terminology < Noosfero::Terminology::Custom |
74 | 74 | '{#} enterprises' => N_('{#} organizations'), |
75 | 75 | '{#} friend' => N_('{#} contact'), |
76 | 76 | '{#} friends' => N_('{#} contacts'), |
77 | + "%s's favorite enterprises" => N_("%s's favorite organizations"), | |
78 | + 'Disable Enterprise' => N_('Disable Organization'), | |
79 | + 'Enable Enterprise' => N_('Enable Organization'), | |
80 | + 'Enterprise Validation' => N_('Organization Validation'), | |
81 | + 'Enterprise Info and settings' => N('Organization Info and settings'), | |
77 | 82 | }) |
78 | 83 | end |
79 | 84 | ... | ... |