diff --git a/src/groupchat_window.py b/src/groupchat_window.py
index ff300e3b116f1c3177c8269a5ce3d361ebf7e468..7d5f41c2c0630c5fb12b9748b606fa4e88f625a4 100644
--- a/src/groupchat_window.py
+++ b/src/groupchat_window.py
@@ -141,10 +141,11 @@ class GroupchatWindow(chat.Chat):
 			rooms_no = len(names)
 			if rooms_no >= 2: # if we are in many rooms
 				pritext = _('Are you sure you want to leave rooms "%s"?') % ', '.join(names)
-				sectext = _('If you close this window, you will be disconnected from this room.')
+				sectext = _('If you close this window, you will be disconnected from these rooms.')
+
 			elif rooms_no == 1: # just in one room
 				pritext = _('Are you sure you want to leave room "%s"?') % names[0]
-				sectext = _('If you close this window, you will be disconnected from these rooms.')
+				sectext = _('If you close this window, you will be disconnected from this room.')
 			
 			if rooms_no > 0:
 				dialog = dialogs.ConfirmationDialogCheck(pritext, sectext,