Minor code changes for consistency

This commit is contained in:
Veronica K. B. Olsen
2021-02-20 13:40:26 +01:00
parent b868477406
commit c9cab47ce0
5 changed files with 10 additions and 13 deletions
+3 -3
View File
@@ -409,9 +409,9 @@ class ProjWizardFinalPage(QWizardPage):
self.setTitle(self.tr("Finished"))
self.theText = QLabel(
"<p>{done}</p><p>{help}</p>".format(
done = self.tr("All done."),
help = self.tr("Press '{0}' to create the new project.").format(
"<p>%s</p><p>%s</p>" % (
self.tr("All done."),
self.tr("Press '{0}' to create the new project.").format(
self.tr("Done") if self.mainConf.osDarwin else self.tr("Finish")
)
)