Commit 7dcbd6a207c47c6053891abbae9d4e0da04c24dc
1 parent
548e53dd
Exists in
master
and in
29 other branches
ActionItem638: fixing terminology use in environment statistics block
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/trunk@2464 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
2 changed files
with
2 additions
and
3 deletions
Show diff stats
app/models/environment_statistics_block.rb
@@ -19,8 +19,8 @@ class EnvironmentStatisticsBlock < Block | @@ -19,8 +19,8 @@ class EnvironmentStatisticsBlock < Block | ||
19 | 19 | ||
20 | info = [ | 20 | info = [ |
21 | n_('One user', '%{num} users', users) % { :num => users }, | 21 | n_('One user', '%{num} users', users) % { :num => users }, |
22 | - n_('One enterprise', '%{num} enterprises', enterprises) % { :num => enterprises }, | ||
23 | - n_('One community', '%{num} communities', communities) % { :num => communities }, | 22 | + n__('One enterprise', '%{num} enterprises', enterprises) % { :num => enterprises }, |
23 | + n__('One community', '%{num} communities', communities) % { :num => communities }, | ||
24 | ] | 24 | ] |
25 | 25 | ||
26 | block_title(title) + content_tag('ul', info.map {|item| content_tag('li', item) }.join("\n")) | 26 | block_title(title) + content_tag('ul', info.map {|item| content_tag('li', item) }.join("\n")) |
lib/zen3_terminology.rb
@@ -39,7 +39,6 @@ class Zen3Terminology < Noosfero::Terminology::Custom | @@ -39,7 +39,6 @@ class Zen3Terminology < Noosfero::Terminology::Custom | ||
39 | 'Register a new Enterprise' => N_('Register a new organization'), | 39 | 'Register a new Enterprise' => N_('Register a new organization'), |
40 | 'One friend' => N_('One contact'), | 40 | 'One friend' => N_('One contact'), |
41 | '%d friends' => N_('%d contacts'), | 41 | '%d friends' => N_('%d contacts'), |
42 | - 'One community' => N_('One group'), | ||
43 | '%d communities' => N_('%d groups'), | 42 | '%d communities' => N_('%d groups'), |
44 | 'Are you sure you want to remove %s from your friends list?' => N_('Are you sure you want to remove %s from your contacts list?'), | 43 | 'Are you sure you want to remove %s from your friends list?' => N_('Are you sure you want to remove %s from your contacts list?'), |
45 | 'Note that %s will still have you as a friend, unless he/she also wants to remove you from his/her friend list.' => N_('Note that %s will still have you as a friend, unless he/she also wants to remove you from his/her contact list.'), | 44 | 'Note that %s will still have you as a friend, unless he/she also wants to remove you from his/her friend list.' => N_('Note that %s will still have you as a friend, unless he/she also wants to remove you from his/her contact list.'), |