summaryrefslogtreecommitdiffstats
path: root/webapp/components/more_direct_channels
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2017-06-22 06:30:03 -0400
committerGeorge Goldberg <george@gberg.me>2017-06-22 11:30:03 +0100
commitac4e9909fa4f3f6c6a0d1e537d6039115d07a5e0 (patch)
tree240f17fc31ec65e9967f36f907b0a9a30ec2e6ae /webapp/components/more_direct_channels
parent42f28ab8e374137fe3f5d25424489d879d4724f8 (diff)
downloadchat-ac4e9909fa4f3f6c6a0d1e537d6039115d07a5e0.tar.gz
chat-ac4e9909fa4f3f6c6a0d1e537d6039115d07a5e0.tar.bz2
chat-ac4e9909fa4f3f6c6a0d1e537d6039115d07a5e0.zip
Fixed incorrect formatting of numbers and plural words (#6696)
* Fixed incorrect formatting of numbers and plural words * Removed unused i18n strings * Fixed eslint errors
Diffstat (limited to 'webapp/components/more_direct_channels')
-rw-r--r--webapp/components/more_direct_channels/more_direct_channels.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/more_direct_channels/more_direct_channels.jsx b/webapp/components/more_direct_channels/more_direct_channels.jsx
index 8b5b6d65c..8b4a105b4 100644
--- a/webapp/components/more_direct_channels/more_direct_channels.jsx
+++ b/webapp/components/more_direct_channels/more_direct_channels.jsx
@@ -285,7 +285,7 @@ export default class MoreDirectChannels extends React.Component {
const numRemainingText = (
<FormattedMessage
id='multiselect.numPeopleRemaining'
- defaultMessage='You can add {num, number} more {num, plural, =0 {people} one {person} other {people}}. '
+ defaultMessage='You can add {num, number} more {num, plural, one {person} other {people}}. '
values={{
num: MAX_SELECTABLE_VALUES - this.state.values.length
}}