forked from openlp/openlp
String format oops
This commit is contained in:
parent
b84dbb15a2
commit
e222a11390
@ -571,7 +571,7 @@ class FirstTimeForm(QtWidgets.QWizard, UiFirstTimeWizard, RegistryProperties):
|
|||||||
text = translate('OpenLP.FirstTimeWizard',
|
text = translate('OpenLP.FirstTimeWizard',
|
||||||
'Download complete. Click the {button} button to start OpenLP.'
|
'Download complete. Click the {button} button to start OpenLP.'
|
||||||
).format(button=clean_button_text(self.buttonText(QtWidgets.QWizard.FinishButton)))
|
).format(button=clean_button_text(self.buttonText(QtWidgets.QWizard.FinishButton)))
|
||||||
self.progress_label.setText()
|
self.progress_label.setText(text)
|
||||||
else:
|
else:
|
||||||
if self.has_run_wizard:
|
if self.has_run_wizard:
|
||||||
text = translate('OpenLP.FirstTimeWizard',
|
text = translate('OpenLP.FirstTimeWizard',
|
||||||
@ -582,7 +582,7 @@ class FirstTimeForm(QtWidgets.QWizard, UiFirstTimeWizard, RegistryProperties):
|
|||||||
text = translate('OpenLP.FirstTimeWizard',
|
text = translate('OpenLP.FirstTimeWizard',
|
||||||
'Click the {button} button to start OpenLP.'
|
'Click the {button} button to start OpenLP.'
|
||||||
).format(button=clean_button_text(self.buttonText(QtWidgets.QWizard.FinishButton)))
|
).format(button=clean_button_text(self.buttonText(QtWidgets.QWizard.FinishButton)))
|
||||||
self.progress_label.setText()
|
self.progress_label.setText(text)
|
||||||
self.finish_button.setVisible(True)
|
self.finish_button.setVisible(True)
|
||||||
self.finish_button.setEnabled(True)
|
self.finish_button.setEnabled(True)
|
||||||
self.cancel_button.setVisible(False)
|
self.cancel_button.setVisible(False)
|
||||||
|
Loading…
Reference in New Issue
Block a user