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:
commit
92641c20f3
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"contactlist": "On Call (__participants__)",
|
||||
"contactlist": "On Call",
|
||||
"connectionsettings": "Connection Settings",
|
||||
"poweredby": "powered by",
|
||||
"feedback": "Give us your feedback",
|
||||
|
|
|
@ -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 + ')');
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue