Explorar el Código

Fixes logout confirmation dialog.

j8
paweldomas hace 10 años
padre
commit
053b2d5af2
Se han modificado 2 ficheros con 4 adiciones y 1 borrados
  1. 2
    0
      lang/main.json
  2. 2
    1
      modules/UI/toolbars/Toolbar.js

+ 2
- 0
lang/main.json Ver fichero

@@ -153,6 +153,8 @@
153 153
         "AuthMsg": "Authentication is required to create room:<br/><b>__room__ </b></br> You can either authenticate to create the room or just wait for someone else to do so.",
154 154
         "Authenticate": "Authenticate",
155 155
         "Cancel": "Cancel",
156
+        "logoutTitle" : "Logout",
157
+        "logoutQuestion" : "Are you sure you want to logout and stop the conference ?",
156 158
         "sessTerminated": "Session Terminated",
157 159
         "hungUp": "You hung up the call",
158 160
         "joinAgain": "Join again",

+ 2
- 1
modules/UI/toolbars/Toolbar.js Ver fichero

@@ -66,7 +66,8 @@ var buttonHandlers =
66 66
     "toolbar_button_logout": function () {
67 67
         // Ask for confirmation
68 68
         messageHandler.openTwoButtonDialog(
69
-            "Logout",
69
+            "dialog.logoutTitle", "Logout",
70
+            "dialog.logoutQuestion",
70 71
             "Are you sure you want to logout and stop the conference ?",
71 72
             false, "Yes",
72 73
             function (evt, yes) {

Loading…
Cancelar
Guardar