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
         "allow": "Allow",
262
         "allow": "Allow",
263
         "confirm": "Confirm",
263
         "confirm": "Confirm",
264
         "kickMessage": "Ouch! You have been kicked out of the meet!",
264
         "kickMessage": "Ouch! You have been kicked out of the meet!",
265
+        "kickTitle": "Kicked from meeting",
265
         "popupErrorTitle": "Pop-up blocked",
266
         "popupErrorTitle": "Pop-up blocked",
266
         "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
         "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
         "passwordErrorTitle": "Password Error",
268
         "passwordErrorTitle": "Password Error",

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

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

Loading…
Cancel
Save