Commit 28a318d650705cca87e89810d009693b4907af8e
1 parent
5d82defd
ActionItem611: fixed misstranlation when using terms
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/branches/0.10.x@2380 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
app/models/environment_statistics_block.rb
... | ... | @@ -15,8 +15,8 @@ class EnvironmentStatisticsBlock < Block |
15 | 15 | |
16 | 16 | info = [ |
17 | 17 | n_('One user', '%{num} users', users) % { :num => users }, |
18 | - n__('One enterprise', '%{num} enterprises', enterprises) % { :num => enterprises }, | |
19 | - n__('One community', '%{num} communities', communities) % { :num => communities }, | |
18 | + n_('One enterprise', '%{num} enterprises', enterprises) % { :num => enterprises }, | |
19 | + n_('One community', '%{num} communities', communities) % { :num => communities }, | |
20 | 20 | ] |
21 | 21 | |
22 | 22 | block_title(title) + content_tag('ul', info.map {|item| content_tag('li', item) }.join("\n")) | ... | ... |