From d9561154087742a2d20d219cc5a1fdc6003f2272 Mon Sep 17 00:00:00 2001 From: Daniela Soares Feitosa Date: Tue, 15 Dec 2015 21:42:55 -0300 Subject: [PATCH] Replace interpolation by full strings --- app/helpers/article_helper.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/helpers/article_helper.rb b/app/helpers/article_helper.rb index 69016be..2e4bf25 100644 --- a/app/helpers/article_helper.rb +++ b/app/helpers/article_helper.rb @@ -105,7 +105,7 @@ module ArticleHelper end def add_option_to_followers(article, tokenized_children) - label_message = _("Allow %s to view this content") % (article.profile.organization? ? _('all community members') : _('all your friends')) + label_message = article.profile.organization? ? _('Allow all community members to view this content') : _('Allow all your friends to view this content') check_box( :article, -- libgit2 0.21.2