Style fixes

Changes requested by @marmarek
This commit is contained in:
Marta Marczykowska-Górecka 2017-11-06 19:45:36 +01:00
parent efc49f3b76
commit ef86e33dee
No known key found for this signature in database
GPG Key ID: 9A752C30B26FD04B

View File

@ -438,9 +438,9 @@ class VMSettingsWindow(Ui_SettingsDialog, QDialog):
def rename_vm(self): def rename_vm(self):
new_vm_name, ok = QInputDialog.getText(self new_vm_name, ok = QInputDialog.getText(self,
, self.tr('Rename VM') self.tr('Rename VM'),
, self.tr('New name: (WARNING: ' self.tr('New name: (WARNING: '
'all other changes will be discarded)')) 'all other changes will be discarded)'))
if ok: if ok:
@ -458,10 +458,12 @@ class VMSettingsWindow(Ui_SettingsDialog, QDialog):
def remove_vm(self): def remove_vm(self):
answer, ok = QInputDialog.getText(self, self.tr('Delete VM') answer, ok = QInputDialog.getText(
, self.tr('Are you absolutely sure you want to delete this VM? ' self,
'<br \> All VM settings and data will be irrevocably' self.tr('Delete VM'),
' deleted. <br \> If you are sure, please enter this ' self.tr('Are you absolutely sure you want to delete this VM? '
'<br/> All VM settings and data will be irrevocably'
' deleted. <br/> If you are sure, please enter this '
'VM\'s name below.')) 'VM\'s name below.'))
@ -469,9 +471,11 @@ class VMSettingsWindow(Ui_SettingsDialog, QDialog):
self._run_in_thread(self._remove_vm) self._run_in_thread(self._remove_vm)
self.done(0) self.done(0)
else: elif ok:
QMessageBox.warning(None, self.tr("Removal cancelled") QMessageBox.warning(
, self.tr("The VM will not be removed.")) None,
self.tr("Removal cancelled"),
self.tr("The VM will not be removed."))
def _clone_vm(self, t_monitor, name): def _clone_vm(self, t_monitor, name):
try: try:
@ -484,13 +488,17 @@ class VMSettingsWindow(Ui_SettingsDialog, QDialog):
def clone_vm(self): def clone_vm(self):
cloned_vm_name, ok = QInputDialog.getText(self, self.tr('Clone VM') cloned_vm_name, ok = QInputDialog.getText(
, self.tr('Name for the cloned VM:')) self,
self.tr('Clone VM'),
self.tr('Name for the cloned VM:'))
if ok: if ok:
self._run_in_thread(self._clone_vm, cloned_vm_name) self._run_in_thread(self._clone_vm, cloned_vm_name)
QMessageBox.warning(None, self.tr("Success") QMessageBox.warning(
, self.tr("The VM was cloned successfully.")) None,
self.tr("Success"),
self.tr("The VM was cloned successfully."))
######### advanced tab ######### advanced tab