Commit 56a0d4fa4772bd58dcb0d3064c4f826a7baae8ac
1 parent
0f4a925e
Exists in
master
and in
29 other branches
rails3: fix people_block translation
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
plugins/people_block/lib/members_block.rb
@@ -12,7 +12,7 @@ class MembersBlock < PeopleBlockBase | @@ -12,7 +12,7 @@ class MembersBlock < PeopleBlockBase | ||
12 | end | 12 | end |
13 | 13 | ||
14 | def default_title | 14 | def default_title |
15 | - title = role ? role.name : n_('members') | 15 | + title = role ? role.name : _('members') |
16 | _('{#} %s') % title | 16 | _('{#} %s') % title |
17 | end | 17 | end |
18 | 18 |