Commit ef4af465f34062264bd969cf6fcddc28a8ed3d75

Authored by Daniela Feitosa
1 parent 568d29ce

Article visibility options meaning are now clearer

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
app/helpers/article_helper.rb
... ... @@ -105,7 +105,7 @@ module ArticleHelper
105 105 end
106 106  
107 107 def add_option_to_followers(article, tokenized_children)
108   - label_message = article.profile.organization? ? _('For all community members') : _('For all your friends')
  108 + label_message = _("Allow %s to view this content") % (article.profile.organization? ? _('all community members') : _('all your friends'))
109 109  
110 110 check_box(
111 111 :article,
... ... @@ -123,7 +123,7 @@ module ArticleHelper
123 123 'div',
124 124 content_tag(
125 125 'label',
126   - _('Fill in the search field to add the exception users to see this content'),
  126 + _('Allow only community members entered below to view this content'),
127 127 :id => "text-input-search-exception-users"
128 128 ) +
129 129 token_input_field_tag(
... ... @@ -132,7 +132,7 @@ module ArticleHelper
132 132 {:action => 'search_article_privacy_exceptions'},
133 133 {
134 134 :focus => false,
135   - :hint_text => _('Type in a search term for a user'),
  135 + :hint_text => _('Type in a name of a community member'),
136 136 :pre_populate => tokenized_children
137 137 }
138 138 )
... ...