Commit bfd0b4a335fb7985d59dbd052761250be585c0ff
1 parent
91c19b6e
Exists in
master
and in
28 other branches
ActionItem833: terminology on signup screen
Showing
3 changed files
with
5 additions
and
2 deletions
Show diff stats
app/views/account/_signup_form.rhtml
... | ... | @@ -5,8 +5,8 @@ |
5 | 5 | <div class="atention"> |
6 | 6 | <%= _('Dear user, welcome to the %s network. To start your participation |
7 | 7 | in this space, fill in the fields below. After this operation, your login and |
8 | -password will be registered, allowing you to create communities and enterprises | |
9 | -in this environment.') % environment.name %> | |
8 | +password will be registered, allowing you to create %s and %s | |
9 | +in this environment.') % [environment.name, __('communities'), __('enterprises')] %> | |
10 | 10 | </div> |
11 | 11 | <% end %> |
12 | 12 | ... | ... |
lib/unifreire_terminology.rb
... | ... | @@ -7,6 +7,7 @@ class UnifreireTerminology < Noosfero::Terminology::Custom |
7 | 7 | # NOTE: the hash values must be marked for translation!! |
8 | 8 | super({ |
9 | 9 | 'Enterprises' => N_('Institutions'), |
10 | + 'enterprises' => N_('institutions'), | |
10 | 11 | 'The enterprises where this user works.' => N_('The institution where this user belongs.'), |
11 | 12 | 'A block that displays your enterprises' => N_('A block that displays your institutions.'), |
12 | 13 | 'All enterprises' => N_('All institutions'), | ... | ... |
lib/zen3_terminology.rb
... | ... | @@ -9,6 +9,7 @@ class Zen3Terminology < Noosfero::Terminology::Custom |
9 | 9 | 'My Home Page' => N_('My ePortfolio'), |
10 | 10 | 'Homepage' => N_('ePortfolio'), |
11 | 11 | 'Communities' => N_('Groups'), |
12 | + 'communities' => N_('groups'), | |
12 | 13 | 'A block that displays your communities' => N_('A block that displays your groups'), |
13 | 14 | 'A block that displays your friends' => N_('A block that displays your contacts'), |
14 | 15 | 'The communities in which the user is a member' => N_('The groups in which the user is a member'), |
... | ... | @@ -18,6 +19,7 @@ class Zen3Terminology < Noosfero::Terminology::Custom |
18 | 19 | '%{num} communities' => N_('%{num} groups'), |
19 | 20 | 'Disable search for communities' => N_('Disable search for groups'), |
20 | 21 | 'Enterprises' => N_('Organizations'), |
22 | + 'enterprises' => N_('organizations'), | |
21 | 23 | 'The enterprises where this user works.' => N_('The organizations where this user works.'), |
22 | 24 | 'A block that displays your enterprises' => N_('A block that displays your organizations.'), |
23 | 25 | 'All enterprises' => N_('All organizations'), | ... | ... |