summaryrefslogtreecommitdiffstats
path: root/webapp/components/add_users_to_team
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/add_users_to_team
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/add_users_to_team')
-rw-r--r--webapp/components/add_users_to_team/add_users_to_team.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/add_users_to_team/add_users_to_team.jsx b/webapp/components/add_users_to_team/add_users_to_team.jsx
index 691323568..34ad6eb0d 100644
--- a/webapp/components/add_users_to_team/add_users_to_team.jsx
+++ b/webapp/components/add_users_to_team/add_users_to_team.jsx
@@ -201,7 +201,7 @@ export default class AddUsersToTeam 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
}}