Explorar o código

Merge remote-tracking branch 'origin/pr/173'

* origin/pr/173:
  Changed wording in Create New Qube and fixed minor bug
  Made terminology in Create New VM GUI clearer
Marek Marczykowski-Górecki %!s(int64=5) %!d(string=hai) anos
pai
achega
e997b4708d
Modificáronse 1 ficheiros con 4 adicións e 4 borrados
  1. 4 4
      qubesmanager/create_new_vm.py

+ 4 - 4
qubesmanager/create_new_vm.py

@@ -116,10 +116,10 @@ class NewVmDlg(QtGui.QDialog, Ui_NewVMDlg):
                 self.tr('Cannot create a qube when no template exists.'))
 
         # Order of types is important and used elsewhere; if it's changed
-        # check for changes needed in self.type_change and TODO
-        type_list = [self.tr("AppVM"),
-                     self.tr("Standalone qube based on a template"),
-                     self.tr("Standalone qube not based on a template")]
+        # check for changes needed in self.type_change
+        type_list = [self.tr("Qube based on a template (AppVM)"),
+                     self.tr("Standalone qube copied from a template"),
+                     self.tr("Empty standalone qube (install your own OS)")]
         self.vm_type.addItems(type_list)
 
         self.vm_type.currentIndexChanged.connect(self.type_change)