Fixed incorrect formatting of numbers and plural words (#6696)

* Fixed incorrect formatting of numbers and plural words

* Removed unused i18n strings

* Fixed eslint errors
Этот коммит содержится в:
Harrison Healey
2017-06-22 06:30:03 -04:00
коммит произвёл George Goldberg
родитель 42f28ab8e3
Коммит ac4e9909fa
10 изменённых файлов: 55 добавлений и 49 удалений

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

@@ -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
}}