浏览代码

Fixes logout confirmation dialog.

master
paweldomas 10 年前
父节点
当前提交
053b2d5af2
共有 2 个文件被更改,包括 4 次插入1 次删除
  1. 2
    0
      lang/main.json
  2. 2
    1
      modules/UI/toolbars/Toolbar.js

+ 2
- 0
lang/main.json 查看文件

@@ -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 查看文件

@@ -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) {

正在加载...
取消
保存