diff --git a/html5/verto/js/src/jquery.verto.js b/html5/verto/js/src/jquery.verto.js index d0c3563c12..9b675f8b7d 100644 --- a/html5/verto/js/src/jquery.verto.js +++ b/html5/verto/js/src/jquery.verto.js @@ -1298,6 +1298,14 @@ this.modCommand("stop", null, "all"); }; + $.verto.conf.prototype.deaf = function(memberID) { + this.modCommand("deaf", parseInt(memberID)); + }; + + $.verto.conf.prototype.undeaf = function(memberID) { + this.modCommand("undeaf", parseInt(memberID)); + }; + $.verto.conf.prototype.record = function(file) { this.modCommand("recording", null, ["start", file]); }; diff --git a/html5/verto/verto_communicator/src/locales/locale-en.json b/html5/verto/verto_communicator/src/locales/locale-en.json index e7eddbe652..437e565997 100644 --- a/html5/verto/verto_communicator/src/locales/locale-en.json +++ b/html5/verto/verto_communicator/src/locales/locale-en.json @@ -144,10 +144,13 @@ "CHAT_TITLE_VOL_PLUS": "Volume +", "CHAT_TITLE_GAIN_MINUS": "Gain -", "CHAT_TITLE_GAIN_PLUS": "Gain +", + "CHAT_TITLE_DEAF_UNDEAF": "Deaf/Undeaf", "CHAT_VOL_MINUS": "Vol -", "CHAT_VOL_PLUS": "Vol +", "CHAT_GAIN_MINUS": "Gain -", "CHAT_GAIN_PLUS": "Gain +", + "CHAT_DEAF": "Deaf", + "CHAT_UNDEAF": "Undeaf", "LANGUAGE": "Language:", "BROWSER_LANGUAGE": "Browser Language", "FACTORY_RESET_SETTINGS": "Factory Reset Settings", diff --git a/html5/verto/verto_communicator/src/locales/locale-pt.json b/html5/verto/verto_communicator/src/locales/locale-pt.json index c1d8cee9cc..23f0c8a0b3 100644 --- a/html5/verto/verto_communicator/src/locales/locale-pt.json +++ b/html5/verto/verto_communicator/src/locales/locale-pt.json @@ -144,10 +144,13 @@ "CHAT_TITLE_VOL_PLUS": "Volume +", "CHAT_TITLE_GAIN_MINUS": "Ganho -", "CHAT_TITLE_GAIN_PLUS": "Ganho +", + "CHAT_TITLE_DEAF_UNDEAF": "Ligar/Desligar Áudio", "CHAT_VOL_MINUS": "Vol -", "CHAT_VOL_PLUS": "Vol +", "CHAT_GAIN_MINUS": "Ganho -", "CHAT_GAIN_PLUS": "Ganho +", + "CHAT_DEAF": "Ligar Áudio", + "CHAT_UNDEAF": "Desligar Áudio", "FACTORY_RESET_SETTINGS": "Redefinir configurações", "AUTOGAIN_CONTROL": "Controle de Ganho Automático (AGC)" } diff --git a/html5/verto/verto_communicator/src/partials/chat.html b/html5/verto/verto_communicator/src/partials/chat.html index 06124ca08e..91a40c66c7 100644 --- a/html5/verto/verto_communicator/src/partials/chat.html +++ b/html5/verto/verto_communicator/src/partials/chat.html @@ -55,7 +55,7 @@