made some cosmetic changes
This commit is contained in:
parent
e4821da97a
commit
d49c320454
|
@ -201,7 +201,7 @@ if __name__ == '__main__':
|
|||
sys.exit(1)
|
||||
QApplication.setQuitOnLastWindowClosed(False)
|
||||
window = Window()
|
||||
if (SettingsExist() == True):
|
||||
if SettingsExist():
|
||||
window.hide()
|
||||
else:
|
||||
window.show()
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
</sizepolicy>
|
||||
</property>
|
||||
<property name="windowTitle">
|
||||
<string>Mail Notify - Settings</string>
|
||||
<string>Mail Notifier - Settings</string>
|
||||
</property>
|
||||
<property name="windowIcon">
|
||||
<iconset>
|
||||
|
|
|
@ -120,7 +120,7 @@ class Ui_Settings(object):
|
|||
|
||||
def retranslateUi(self, Settings):
|
||||
_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.groupBox.setTitle(_translate("Settings", "IMAP settings"))
|
||||
self.txtboxMailServer.setPlaceholderText(_translate("Settings", "mail.example.com"))
|
||||
|
|
Loading…
Reference in New Issue