Commit 6761d8c0032df811e58357107a970909aee2ff0d
Exists in
staging
and in
29 other branches
Merge branch 'admin_notification_translations' into 'master'
admin_notifications: checkbox message for profile Changes "homepage" checkbox message when the notification is for a profile. See merge request !923
Showing
3 changed files
with
10 additions
and
3 deletions
Show diff stats
plugins/admin_notifications/po/admin_notifications.pot
| ... | ... | @@ -8,8 +8,8 @@ msgid "" |
| 8 | 8 | msgstr "" |
| 9 | 9 | "Project-Id-Version: PACKAGE VERSION\n" |
| 10 | 10 | "Report-Msgid-Bugs-To: \n" |
| 11 | -"POT-Creation-Date: 2016-05-16 14:48-0300\n" | |
| 12 | -"PO-Revision-Date: 2016-05-16 14:48-0300\n" | |
| 11 | +"POT-Creation-Date: 2016-05-17 15:38-0300\n" | |
| 12 | +"PO-Revision-Date: 2016-05-17 15:38-0300\n" | |
| 13 | 13 | "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" |
| 14 | 14 | "Language-Team: LANGUAGE <LL@li.org>\n" |
| 15 | 15 | "Language: \n" |
| ... | ... | @@ -113,6 +113,10 @@ msgid "Red - Danger" |
| 113 | 113 | msgstr "" |
| 114 | 114 | |
| 115 | 115 | #: ../views/shared/_form.html.erb:23 |
| 116 | +msgid "Display only in the profile homepage" | |
| 117 | +msgstr "" | |
| 118 | + | |
| 119 | +#: ../views/shared/_form.html.erb:23 | |
| 116 | 120 | msgid "Display only in the homepage" |
| 117 | 121 | msgstr "" |
| 118 | 122 | ... | ... |
plugins/admin_notifications/po/pt/admin_notifications.po
| ... | ... | @@ -89,6 +89,9 @@ msgstr "Verde - Sucesso" |
| 89 | 89 | msgid "Red - Danger" |
| 90 | 90 | msgstr "Vermelho - Perigo" |
| 91 | 91 | |
| 92 | +msgid "Display only in the profile homepage" | |
| 93 | +msgstr "Apresentar apenas na página inicial do perfil" | |
| 94 | + | |
| 92 | 95 | msgid "Display only in the homepage" |
| 93 | 96 | msgstr "Apresentar apenas na página inicial" |
| 94 | 97 | ... | ... |
plugins/admin_notifications/views/shared/_form.html.erb
| ... | ... | @@ -20,7 +20,7 @@ |
| 20 | 20 | <%= labelled_form_field(_('Notifications Color/Type'), select(:notifications, :type, options_for_select_with_title({_("Blue - Information") => "AdminNotificationsPlugin::InformationNotification", _("Yellow - Warning") => "AdminNotificationsPlugin::WarningNotification", _("Green - Success") => "AdminNotificationsPlugin::SuccessNotification", _("Red - Danger") => "AdminNotificationsPlugin::DangerNotification"}, @notification.type))) %> |
| 21 | 21 | |
| 22 | 22 | <div> |
| 23 | - <%= labelled_check_box(_("Display only in the homepage"), 'notifications[display_only_in_homepage]', '1', @notification.display_only_in_homepage?) %> | |
| 23 | + <%= labelled_check_box(profile.present? ? _("Display only in the profile homepage") : _("Display only in the homepage") , 'notifications[display_only_in_homepage]', '1', @notification.display_only_in_homepage?) %> | |
| 24 | 24 | </div> |
| 25 | 25 | |
| 26 | 26 | <div> | ... | ... |