Add count as a placeholder to the title for RTL languages

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2021-10-27 12:06:51 +02:00
Родитель a73fbfac5f
Коммит f0c8f2ff23
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 7076EA9751AACDDA
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -214,7 +214,7 @@ export default {
participantsText() {
const participants = this.$store.getters.participantsList(this.token)
return t('spreed', 'Participants') + ' (' + participants.length + ')'
return t('spreed', 'Participants ({count})', { count: participants.length })
},
},