Update text in Account Settings > Notification (#3901)

* Comment thread notification text

* Update user_settings_notifications.jsx

* Update user_settings_notifications.jsx

* Update en.json

* Update email_notification_setting.jsx

* Update en.json

* Update user_settings_notifications.jsx

* Update user_settings_notifications.jsx

* Update user_settings_notifications.jsx

* Update user_settings_notifications.jsx
Этот коммит содержится в:
Eric Sethna
2016-08-30 17:41:37 -06:00
коммит произвёл Joram Wilander
родитель 60a0db7f6a
Коммит e9bc77a8f7
3 изменённых файлов: 20 добавлений и 20 удалений

Просмотреть файл

@@ -102,7 +102,7 @@ export default class EmailNotificationSetting extends React.Component {
return (
<SettingItemMin
title={localizeMessage('user.settings.notifications.emailNotifications', 'Send Email notifications')}
title={localizeMessage('user.settings.notifications.emailNotifications', 'Email notifications')}
describe={description}
updateSection={this.expand}
/>
@@ -156,7 +156,7 @@ export default class EmailNotificationSetting extends React.Component {
return (
<SettingItemMax
title={localizeMessage('user.settings.notifications.emailNotifications', 'Send email notifications')}
title={localizeMessage('user.settings.notifications.emailNotifications', 'Email notifications')}
inputs={[
<div key='userNotificationEmailOptions'>
<div className='radio'>
@@ -192,7 +192,7 @@ export default class EmailNotificationSetting extends React.Component {
<div>
<FormattedMessage
id='user.settings.notifications.emailInfo'
defaultMessage='Email notifications that are sent for mentions and direct messages when you are offline or away from {siteName} for more than 5 minutes.'
defaultMessage='Email notifications are sent for mentions and direct messages when you are offline or away from {siteName} for more than 5 minutes.'
values={{
siteName: global.window.mm_config.SiteName
}}
@@ -208,4 +208,4 @@ export default class EmailNotificationSetting extends React.Component {
/>
);
}
}
}