From ef4af465f34062264bd969cf6fcddc28a8ed3d75 Mon Sep 17 00:00:00 2001 From: Daniela Soares Feitosa Date: Tue, 15 Dec 2015 14:09:20 -0300 Subject: [PATCH] Article visibility options meaning are now clearer --- app/helpers/article_helper.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/helpers/article_helper.rb b/app/helpers/article_helper.rb index 4ec0477..69016be 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 = article.profile.organization? ? _('For all community members') : _('For all your friends') + label_message = _("Allow %s to view this content") % (article.profile.organization? ? _('all community members') : _('all your friends')) check_box( :article, @@ -123,7 +123,7 @@ module ArticleHelper 'div', content_tag( 'label', - _('Fill in the search field to add the exception users to see this content'), + _('Allow only community members entered below to view this content'), :id => "text-input-search-exception-users" ) + token_input_field_tag( @@ -132,7 +132,7 @@ module ArticleHelper {:action => 'search_article_privacy_exceptions'}, { :focus => false, - :hint_text => _('Type in a search term for a user'), + :hint_text => _('Type in a name of a community member'), :pre_populate => tokenized_children } ) -- libgit2 0.21.2