Skip to content

Commit

Permalink
Made terminology in Create New VM GUI clearer
Browse files Browse the repository at this point in the history
Changed the terms used in Create New VM Gui to the following:
-Qube based on a template (AppVM)
-Standalone qube
-Standalone qube copied from a template

references QubesOS/qubes-issues#4723
  • Loading branch information
marmarta committed Apr 8, 2019
1 parent f4d0417 commit c24458e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions qubesmanager/create_new_vm.py
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ def __init__(self, qtapp, app, parent=None):

# 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")]
type_list = [self.tr("Qube based on a template (AppVM)"),
self.tr("Standalone qube"),
self.tr("Standalone qube copied from a template")]
self.vm_type.addItems(type_list)

self.vm_type.currentIndexChanged.connect(self.type_change)
Expand Down

0 comments on commit c24458e

Please sign in to comment.