summaryrefslogtreecommitdiffstats
path: root/webapp/plugins
diff options
context:
space:
mode:
authorJason Blais <jason@spinpunch.com>2017-08-21 08:04:33 -0400
committerJoram Wilander <jwawilander@gmail.com>2017-08-21 08:04:33 -0400
commitd7b055f4284dea3b776fe20af436a9da3a48c6b8 (patch)
treefbcb28988abfb1607f71f6a8dba95d0a2d1994f3 /webapp/plugins
parent1222e6cd4172657143202882e7189274352e2cd5 (diff)
downloadchat-d7b055f4284dea3b776fe20af436a9da3a48c6b8.tar.gz
chat-d7b055f4284dea3b776fe20af436a9da3a48c6b8.tar.bz2
chat-d7b055f4284dea3b776fe20af436a9da3a48c6b8.zip
Minor string changes for JIRA setting (#7264)
* Update settings.jsx * Update en.json
Diffstat (limited to 'webapp/plugins')
-rw-r--r--webapp/plugins/jira/components/settings.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/webapp/plugins/jira/components/settings.jsx b/webapp/plugins/jira/components/settings.jsx
index 87a44794b..4e9a479f5 100644
--- a/webapp/plugins/jira/components/settings.jsx
+++ b/webapp/plugins/jira/components/settings.jsx
@@ -180,7 +180,7 @@ export default class JIRASettings extends AdminSettings {
<SettingsGroup>
<BooleanSetting
id='enabled'
- label={Utils.localizeMessage('admin.plugins.jira.enabledLabel', 'Enabled:')}
+ label={Utils.localizeMessage('admin.plugins.jira.enabledLabel', 'Enable JIRA:')}
helpText={Utils.localizeMessage('admin.plugins.jira.enabledDescription', 'When true, you can configure JIRA webhooks to post message in Mattermost. To help combat phishing attacks, all posts are labelled by a BOT tag.')}
value={this.state.enabled}
onChange={(id, value) => this.handleEnabledChange(value)}
@@ -237,9 +237,9 @@ export default class JIRASettings extends AdminSettings {
'/plugins/jira/webhook?secret=' +
(this.state.secret ? encodeURIComponent(this.state.secret) : ('<b>' + Utils.localizeMessage('admin.plugins.jira.secretParamPlaceholder', 'secret') + '</b>')) +
'&team=<b>' +
- Utils.localizeMessage('admin.plugins.jira.teamParamPlaceholder', 'teamname') +
+ Utils.localizeMessage('admin.plugins.jira.teamParamPlaceholder', 'teamurl') +
'</b>&channel=<b>' +
- Utils.localizeMessage('admin.plugins.jira.channelParamNamePlaceholder', 'channelname') +
+ Utils.localizeMessage('admin.plugins.jira.channelParamNamePlaceholder', 'channelurl') +
'</b>'
}}
/>