diff --git a/lang/main.json b/lang/main.json
index 71bee77aa..ccfbf20a8 100644
--- a/lang/main.json
+++ b/lang/main.json
@@ -153,6 +153,8 @@
"AuthMsg": "Authentication is required to create room:
__room__ You can either authenticate to create the room or just wait for someone else to do so.",
"Authenticate": "Authenticate",
"Cancel": "Cancel",
+ "logoutTitle" : "Logout",
+ "logoutQuestion" : "Are you sure you want to logout and stop the conference ?",
"sessTerminated": "Session Terminated",
"hungUp": "You hung up the call",
"joinAgain": "Join again",
diff --git a/modules/UI/toolbars/Toolbar.js b/modules/UI/toolbars/Toolbar.js
index a29ab7d5c..4246668fc 100644
--- a/modules/UI/toolbars/Toolbar.js
+++ b/modules/UI/toolbars/Toolbar.js
@@ -66,7 +66,8 @@ var buttonHandlers =
"toolbar_button_logout": function () {
// Ask for confirmation
messageHandler.openTwoButtonDialog(
- "Logout",
+ "dialog.logoutTitle", "Logout",
+ "dialog.logoutQuestion",
"Are you sure you want to logout and stop the conference ?",
false, "Yes",
function (evt, yes) {