Commit 39e830934c4a1670807e2adaecb797dfb452aade
1 parent
abecb662
Exists in
master
and in
28 other branches
ActionItem1695: fix gettext call
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/controllers/public/profile_controller.rb
... | ... | @@ -237,7 +237,7 @@ class ProfileController < PublicController |
237 | 237 | def private_profile |
238 | 238 | if profile.person? |
239 | 239 | @action = :add_friend |
240 | - @message = _("The content here is available to %s's friends only." % profile.short_name) | |
240 | + @message = _("The content here is available to %s's friends only.") % profile.short_name | |
241 | 241 | else |
242 | 242 | @action = :join |
243 | 243 | @message = _('The contents in this community is available to members only.') | ... | ... |