From 7477f781ef287cd809e9ec116a353c30d7b2030c Mon Sep 17 00:00:00 2001 From: Samuel Mehrbrodt Date: Thu, 27 Aug 2015 10:15:51 +0200 Subject: [PATCH] Close -> Exit (as in the menu) --- openlp/core/ui/mainwindow.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/openlp/core/ui/mainwindow.py b/openlp/core/ui/mainwindow.py index 4ec4d9ea7..f53f77e90 100644 --- a/openlp/core/ui/mainwindow.py +++ b/openlp/core/ui/mainwindow.py @@ -1082,11 +1082,11 @@ class MainWindow(QtGui.QMainWindow, Ui_MainWindow, RegistryProperties): event.ignore() else: if Settings().value('advanced/enable exit confirmation'): - msg_box = QtGui.QMessageBox(QtGui.QMessageBox.Question, translate('OpenLP.MainWindow', 'Close OpenLP'), - translate('OpenLP.MainWindow', 'Are you sure you want to close OpenLP?'), + msg_box = QtGui.QMessageBox(QtGui.QMessageBox.Question, translate('OpenLP.MainWindow', 'Exit OpenLP'), + translate('OpenLP.MainWindow', 'Are you sure you want to exit OpenLP?'), QtGui.QMessageBox.StandardButtons(QtGui.QMessageBox.Close | QtGui.QMessageBox.Cancel), self) - msg_box.setButtonText(QtGui.QMessageBox.Close, translate('OpenLP.MainWindow', 'Close OpenLP')) + msg_box.setButtonText(QtGui.QMessageBox.Close, translate('OpenLP.MainWindow', '&Exit OpenLP')) msg_box.setDefaultButton(QtGui.QMessageBox.Close) if msg_box.exec() == QtGui.QMessageBox.Close: self.clean_up()