diff --git a/src/common/optparser.py b/src/common/optparser.py
index 95ff174e504ddd8e739377403bd99df46a0f9720..22bdc61591ab49001f4e9c6b0131f2f4eba84cf5 100644
--- a/src/common/optparser.py
+++ b/src/common/optparser.py
@@ -47,7 +47,7 @@ class OptionsParser:
 			fd = open(self.__filename)
 		except:
 			if os.path.exists(self.__filename):
-				#it is file about file FIXME: bad comment
+				#we talk about a file
 				print _('error: cannot open %s for reading') % self.__filename
 			return
 
diff --git a/src/groupchat_window.py b/src/groupchat_window.py
index 6ccc3697ae60a26aaffdefa5639b890bcf9e1bd8..f77ef39269e2ef77ccf9ad287f87ad470b7d4461 100644
--- a/src/groupchat_window.py
+++ b/src/groupchat_window.py
@@ -122,8 +122,8 @@ class GroupchatWindow(chat.Chat):
 		for room_jid in self.xmls:
 			if time.time() - gajim.last_message_time[self.account][room_jid] < 2:
 				dialog = dialogs.ConfirmationDialog(
-		_('You just received a new message in room "%s"') %room_jid.split('@')[0],
-			_('If you close this window, this message will be lost.')
+	_('You just received a new message in room "%s"') % room_jid.split('@')[0],
+	_('If you close this window and you have history disabled, this message will be lost.')
 					)
 				if dialog.get_response() != gtk.RESPONSE_OK:
 					dialog.destroy()
@@ -967,7 +967,7 @@ class GroupchatWindow(chat.Chat):
 			name = gajim.get_nick_from_jid(room_jid)
 			dialog = dialogs.ConfirmationDialog(
 				_('You just received a new message in room "%s"') % name,
-				_('If you close this tab, the message will be lost.'))
+		_('If you close this tab and you have history disabled, the message will be lost.'))
 			if dialog.get_response() != gtk.RESPONSE_OK:
 				return
 
diff --git a/src/tabbed_chat_window.py b/src/tabbed_chat_window.py
index fa15c7de96de8544fb9cabad278883512664d450..cfd54cc6229cb08d513decfb7762ddc07fee2270 100644
--- a/src/tabbed_chat_window.py
+++ b/src/tabbed_chat_window.py
@@ -272,7 +272,7 @@ timestamp, contact):
 				dialog = dialogs.ConfirmationDialog(
 					#%s is being replaced in the code with JID
 					_('You just received a new message from "%s"' % jid),
-					_('If you close the window, this message will be lost.'))
+					_('If you close this tab and you have history disabled, this message will be lost.'))
 				if dialog.get_response() != gtk.RESPONSE_OK:
 					return True #stop the propagation of the event
 
@@ -340,7 +340,7 @@ timestamp, contact):
 		if time.time() - gajim.last_message_time[self.account][jid] < 2:
 			dialog = dialogs.ConfirmationDialog(
 				_('You just received a new message from "%s"' % jid),
-				_('If you close this tab, the message will be lost.'))
+				_('If you close this tab and you have history disabled, the message will be lost.'))
 			if dialog.get_response() != gtk.RESPONSE_OK:
 				return