X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;ds=sidebyside;f=wizard%2FBCreationPage.py;h=8cd1d369ca44dfb35882805da02f7f1d5dc3c5ea;hb=e0a19693a515af4ad45c94accf1d863bc07fad6d;hp=225aa2e29c7944e78fd6e70d2647ada454cf5a9e;hpb=95b71bb91147ac88fa10fed3385ce2f0307fe13c;p=bertos.git diff --git a/wizard/BCreationPage.py b/wizard/BCreationPage.py index 225aa2e2..8cd1d369 100644 --- a/wizard/BCreationPage.py +++ b/wizard/BCreationPage.py @@ -46,7 +46,8 @@ class BCreationPage(BWizardPage): def __init__(self): BWizardPage.__init__(self, UI_LOCATION + "/project_creation.ui") - self.setTitle(self.tr("Settings summary")) + self.setTitle(self.tr("Project summary")) + self.setSubTitle(self.tr("Your project is ready to be created. Review your selections and press the \"Create\" button")) self._completed = False ## Overloaded BWizardPage methods ## @@ -86,7 +87,7 @@ class BCreationPage(BWizardPage): toolchain_target = QTreeWidgetItem(toolchain_title, QStringList([version])) toolchain_path = QTreeWidgetItem(toolchain_title, QStringList([self.tr("path: " + os.path.normpath(toolchain_info["path"]))])) top_level.append(toolchain_title) - module_title = QTreeWidgetItem(QStringList([self.tr("Modules")])) + module_title = QTreeWidgetItem(QStringList([self.tr("Selected modules")])) configurations = self.projectInfo("CONFIGURATIONS") module_categories = {} for module, information in self.projectInfo("MODULES").items(): @@ -110,4 +111,4 @@ class BCreationPage(BWizardPage): for item in top_level: self.pageContent.summaryTree.expandItem(item) - #### \ No newline at end of file + ####