From 39e830934c4a1670807e2adaecb797dfb452aade Mon Sep 17 00:00:00 2001 From: Antonio Terceiro Date: Sat, 6 Nov 2010 16:48:27 -0300 Subject: [PATCH] ActionItem1695: fix gettext call --- app/controllers/public/profile_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/public/profile_controller.rb b/app/controllers/public/profile_controller.rb index 05e8a2b..242bf89 100644 --- a/app/controllers/public/profile_controller.rb +++ b/app/controllers/public/profile_controller.rb @@ -237,7 +237,7 @@ class ProfileController < PublicController def private_profile if profile.person? @action = :add_friend - @message = _("The content here is available to %s's friends only." % profile.short_name) + @message = _("The content here is available to %s's friends only.") % profile.short_name else @action = :join @message = _('The contents in this community is available to members only.') -- libgit2 0.21.2