fix: plural translation

fix #78
pull/82/head
sualko 2020-09-09 11:31:49 +02:00
parent 0938670d19
commit f2b6feb876
1 changed files with 2 additions and 2 deletions

View File

@ -5,10 +5,10 @@ $(() => {
const interval = window.setInterval(() => { const interval = window.setInterval(() => {
$('#bbb-waiting-text').text( $('#bbb-waiting-text').text(
t( n(
'bbb', 'bbb',
'This room is not open yet. We will try it again in %n second. Please wait.', 'This room is not open yet. We will try it again in %n second. Please wait.',
'This room is not open yet. We will try it again in %n seconds. Please wait.' as any, 'This room is not open yet. We will try it again in %n seconds. Please wait.',
--countdown --countdown
) )
); );