Label and help text change to icon and username override (#3932)

* Update custom_integrations_settings.jsx

* Update en.json

* Update custom_integrations_settings.jsx
Этот коммит содержится в:
Eric Sethna
2016-09-02 09:29:06 -06:00
коммит произвёл Christopher Speller
родитель 7533062f6c
Коммит 717e8197ff
2 изменённых файлов: 10 добавлений и 10 удалений

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

@@ -145,13 +145,13 @@ export default class WebhookSettings extends AdminSettings {
label={
<FormattedMessage
id='admin.service.overrideTitle'
defaultMessage='Enable webhooks and slash commands to override usernames:'
defaultMessage='Enable integrations to override usernames:'
/>
}
helpText={
<FormattedMessage
<FormattedHTMLMessage
id='admin.service.overrideDescription'
defaultMessage='When true, webhooks and slash commands will be allowed to change the username they are posting as. Note, combined with allowing icon overriding, this could open users up to phishing attacks.'
defaultMessage='When true, webhooks, slash commands and other integrations, such as <a href="https://docs.mattermost.com/integrations/zapier.html" target="_blank">Zapier</a>, will be allowed to change the username they are posting as. Note: Combined with allowing integrations to override profile picture icons, users may be able to perform phishing attacks by attempting to impersonate other users.'
/>
}
value={this.state.enablePostUsernameOverride}
@@ -162,13 +162,13 @@ export default class WebhookSettings extends AdminSettings {
label={
<FormattedMessage
id='admin.service.iconTitle'
defaultMessage='Enable webhooks and slash commands to override profile picture icons:'
defaultMessage='Enable integrations to override profile picture icons:'
/>
}
helpText={
<FormattedMessage
<FormattedHTMLMessage
id='admin.service.iconDescription'
defaultMessage='When true, webhooks and slash commands will be allowed to change the icon they post with. Note, combined with allowing username overriding, this could open users up to phishing attacks.'
defaultMessage='When true, webhooks, slash commands and other integrations, such as <a href="https://docs.mattermost.com/integrations/zapier.html" target="_blank">Zapier</a>, will be allowed to change the profile picture they post with. Note: Combined with allowing integrations to override usernames, users may be able to perform phishing attacks by attempting to impersonate other users.'
/>
}
value={this.state.enablePostIconOverride}