fix(notification): change title for kick notification

This commit is contained in:
Leonard Kim 2018-09-10 11:54:04 -07:00 committed by yanas
parent e63cd8c81b
commit 17f4b24a3f
2 changed files with 2 additions and 1 deletions

View File

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

View File

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