Merge pull request #916 from jitsi/contaclist-title-update

Moves the number in the code, not as a translation parameter.
This commit is contained in:
yanas 2016-09-21 22:15:48 -05:00 committed by GitHub
commit 92641c20f3
2 changed files with 3 additions and 4 deletions

View File

@ -1,5 +1,5 @@
{
"contactlist": "On Call (__participants__)",
"contactlist": "On Call",
"connectionsettings": "Connection Settings",
"poweredby": "powered by",
"feedback": "Give us your feedback",

View File

@ -26,9 +26,8 @@ function updateNumberOfParticipants(delta) {
.parent()[numberOfContacts > 1 ? 'show' : 'hide']();
$("#contacts_container>div.title").text(
APP.translation.translateString(
"contactlist", {participants: numberOfContacts}
));
APP.translation.translateString("contactlist")
+ ' (' + numberOfContacts + ')');
}
/**