Commit b770a7c019ff24711c7317f3d886a1e3d15db807
1 parent
8a7457de
Exists in
master
and in
29 other branches
Marking strings correcly
(ActionItem1588)
Showing
1 changed file
with
6 additions
and
6 deletions
Show diff stats
app/helpers/application_helper.rb
... | ... | @@ -1082,9 +1082,9 @@ module ApplicationHelper |
1082 | 1082 | |
1083 | 1083 | def browse_people_menu |
1084 | 1084 | links = [ |
1085 | - {_('people|More Recent') => url_for({:controller => 'browse', :action => 'people', :filter => 'more_recent'})}, | |
1086 | - {_('people|More Active') => url_for({:controller => 'browse', :action => 'people', :filter => 'more_active'})}, | |
1087 | - {_('people|More Popular') => url_for({:controller => 'browse', :action => 'people', :filter => 'more_popular'})} | |
1085 | + {s_('people|More Recent') => url_for({:controller => 'browse', :action => 'people', :filter => 'more_recent'})}, | |
1086 | + {s_('people|More Active') => url_for({:controller => 'browse', :action => 'people', :filter => 'more_active'})}, | |
1087 | + {s_('people|More Popular') => url_for({:controller => 'browse', :action => 'people', :filter => 'more_popular'})} | |
1088 | 1088 | ] |
1089 | 1089 | if logged_in? |
1090 | 1090 | links.push(_('My friends') => url_for({:profile => current_user.login, :controller => 'friends'})) |
... | ... | @@ -1097,9 +1097,9 @@ module ApplicationHelper |
1097 | 1097 | |
1098 | 1098 | def browse_communities_menu |
1099 | 1099 | links = [ |
1100 | - {_('communities|More Recent') => url_for({:controller => 'browse', :action => 'communities', :filter => 'more_recent'})}, | |
1101 | - {_('communities|More Active') => url_for({:controller => 'browse', :action => 'communities', :filter => 'more_active'})}, | |
1102 | - {_('communities|More Popular') => url_for({:controller => 'browse', :action => 'communities', :filter => 'more_popular'})} | |
1100 | + {s_('communities|More Recent') => url_for({:controller => 'browse', :action => 'communities', :filter => 'more_recent'})}, | |
1101 | + {s_('communities|More Active') => url_for({:controller => 'browse', :action => 'communities', :filter => 'more_active'})}, | |
1102 | + {s_('communities|More Popular') => url_for({:controller => 'browse', :action => 'communities', :filter => 'more_popular'})} | |
1103 | 1103 | ] |
1104 | 1104 | if logged_in? |
1105 | 1105 | links.push(_('My communities') => url_for({:profile => current_user.login, :controller => 'memberships'})) | ... | ... |