Commit 294428897a9a4601591d66815fcad243580bff6b
1 parent
39dd786e
Exists in
stable-spb-1.4
and in
7 other branches
Replace interpolation by full strings
(cherry picked from commit d9561154087742a2d20d219cc5a1fdc6003f2272)
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
app/helpers/article_helper.rb
@@ -105,7 +105,7 @@ module ArticleHelper | @@ -105,7 +105,7 @@ module ArticleHelper | ||
105 | end | 105 | end |
106 | 106 | ||
107 | def add_option_to_followers(article, tokenized_children) | 107 | def add_option_to_followers(article, tokenized_children) |
108 | - label_message = _("Allow %s to view this content") % (article.profile.organization? ? _('all community members') : _('all your friends')) | 108 | + label_message = article.profile.organization? ? _('Allow all community members to view this content') : _('Allow all your friends to view this content') |
109 | 109 | ||
110 | check_box( | 110 | check_box( |
111 | :article, | 111 | :article, |