made some cosmetic changes

This commit is contained in:
Rinaldus 2015-10-31 20:49:46 +03:00
parent e4821da97a
commit d49c320454
3 changed files with 3 additions and 3 deletions

View File

@ -201,7 +201,7 @@ if __name__ == '__main__':
sys.exit(1) sys.exit(1)
QApplication.setQuitOnLastWindowClosed(False) QApplication.setQuitOnLastWindowClosed(False)
window = Window() window = Window()
if (SettingsExist() == True): if SettingsExist():
window.hide() window.hide()
else: else:
window.show() window.show()

View File

@ -17,7 +17,7 @@
</sizepolicy> </sizepolicy>
</property> </property>
<property name="windowTitle"> <property name="windowTitle">
<string>Mail Notify - Settings</string> <string>Mail Notifier - Settings</string>
</property> </property>
<property name="windowIcon"> <property name="windowIcon">
<iconset> <iconset>

View File

@ -120,7 +120,7 @@ class Ui_Settings(object):
def retranslateUi(self, Settings): def retranslateUi(self, Settings):
_translate = QtCore.QCoreApplication.translate _translate = QtCore.QCoreApplication.translate
Settings.setWindowTitle(_translate("Settings", "Mail Notify - Settings")) Settings.setWindowTitle(_translate("Settings", "Mail Notifier - Settings"))
self.boolifNotify.setText(_translate("Settings", "Use also pop-up notification")) self.boolifNotify.setText(_translate("Settings", "Use also pop-up notification"))
self.groupBox.setTitle(_translate("Settings", "IMAP settings")) self.groupBox.setTitle(_translate("Settings", "IMAP settings"))
self.txtboxMailServer.setPlaceholderText(_translate("Settings", "mail.example.com")) self.txtboxMailServer.setPlaceholderText(_translate("Settings", "mail.example.com"))