Browse Source

fix(notification): change title for kick notification

j8
Leonard Kim 6 years ago
parent
commit
17f4b24a3f
2 changed files with 2 additions and 1 deletions
  1. 1
    0
      lang/main.json
  2. 1
    1
      modules/UI/UI.js

+ 1
- 0
lang/main.json View File

@@ -262,6 +262,7 @@
262 262
         "allow": "Allow",
263 263
         "confirm": "Confirm",
264 264
         "kickMessage": "Ouch! You have been kicked out of the meet!",
265
+        "kickTitle": "Kicked from meeting",
265 266
         "popupErrorTitle": "Pop-up blocked",
266 267
         "popupError": "Your browser is blocking pop-up windows from this site. Please enable pop-ups in your browser's security settings and try again.",
267 268
         "passwordErrorTitle": "Password Error",

+ 1
- 1
modules/UI/UI.js View File

@@ -157,7 +157,7 @@ UI.notifyKicked = function() {
157 157
     messageHandler.showError({
158 158
         hideErrorSupportLink: true,
159 159
         descriptionKey: 'dialog.kickMessage',
160
-        titleKey: 'dialog.sessTerminated'
160
+        titleKey: 'dialog.kickTitle'
161 161
     });
162 162
 };
163 163
 

Loading…
Cancel
Save