Change some strings.
[bertos.git] / wizard / BCreationPage.py
index 225aa2e29c7944e78fd6e70d2647ada454cf5a9e..8cd1d369ca44dfb35882805da02f7f1d5dc3c5ea 100644 (file)
@@ -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
+    ####