summaryrefslogtreecommitdiffstats
path: root/webapp/components
diff options
context:
space:
mode:
authorCorey Hulen <corey@hulen.com>2017-08-03 05:38:17 -0700
committerHarrison Healey <harrisonmhealey@gmail.com>2017-08-03 08:38:17 -0400
commit43c523e8391f454c90358951c86b107d44203b72 (patch)
treeb3707945221c24c78d19150cf28f742f5a736898 /webapp/components
parentf3934bc7e1e8ef555e1c2e1fe0ece3dbd88ea687 (diff)
downloadchat-43c523e8391f454c90358951c86b107d44203b72.tar.gz
chat-43c523e8391f454c90358951c86b107d44203b72.tar.bz2
chat-43c523e8391f454c90358951c86b107d44203b72.zip
PLT-7130 adding more generic push notificaiton message. (#7044)
* PLT-7130 adding more generic push notificaiton message. * Fixing strings
Diffstat (limited to 'webapp/components')
-rw-r--r--webapp/components/admin_console/push_settings.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/components/admin_console/push_settings.jsx b/webapp/components/admin_console/push_settings.jsx
index c5aebf69e..b5f788c86 100644
--- a/webapp/components/admin_console/push_settings.jsx
+++ b/webapp/components/admin_console/push_settings.jsx
@@ -207,7 +207,8 @@ export default class PushSettings extends AdminSettings {
<DropdownSetting
id='pushNotificationContents'
values={[
- {value: 'generic', text: Utils.localizeMessage('admin.email.genericPushNotification', 'Send generic description with user and channel names')},
+ {value: 'generic_no_channel', text: Utils.localizeMessage('admin.email.genericNoChannelPushNotification', '"Send generic description with only sender name')},
+ {value: 'generic', text: Utils.localizeMessage('admin.email.genericPushNotification', 'Send generic description with sender and channel names')},
{value: 'full', text: Utils.localizeMessage('admin.email.fullPushNotification', 'Send full message snippet')}
]}
label={
@@ -222,8 +223,7 @@ export default class PushSettings extends AdminSettings {
helpText={
<FormattedHTMLMessage
id='admin.email.pushContentDesc'
- defaultMessage='Selecting "Send generic description with user and channel names" provides push notifications with generic messages, including names of users and channels but no specific details from the message text.<br /><br />
- Selecting "Send full message snippet" sends excerpts from messages triggering notifications with specifics and may include confidential information sent in messages. If your Push Notification Service is outside your firewall, it is HIGHLY RECOMMENDED this option only be used with an "https" protocol to encrypt the connection.'
+ defaultMessage='"Send generic description with only sender name" includes only the name of the person who sent the message in push notifications, with no information about channel name or message contents.<br /><br />"Send generic description with sender and channel names" includes the name of the person who sent the message and the channel it was sent in, but not the message text.<br /><br />"Send full message snippet" includes a message excerpt in push notifications, which may contain confidential information sent in messages. If your Push Notification Service is outside your firewall, it is *highly recommended* this option only be used with an "https" protocol to encrypt the connection.'
/>
}
/>