From 118c9265ebf222482d4a6543746795f61e7dfccf Mon Sep 17 00:00:00 2001 From: Nikos Skalkotos <skalkoto@grnet.gr> Date: Thu, 11 Sep 2014 17:51:19 +0300 Subject: [PATCH] Rename the VirtIO dialog menu OK button to Info When the button is pressed it displays further information about an installed VirtIO driver. --- image_creator/dialog_menu.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/image_creator/dialog_menu.py b/image_creator/dialog_menu.py index 1322cb2..124c8ba 100644 --- a/image_creator/dialog_menu.py +++ b/image_creator/dialog_menu.py @@ -704,11 +704,12 @@ def virtio(session): (code, choice) = d.menu( "In this menu you can see details about the installed VirtIO " - "drivers on the input media. Press <OK> to see more information " + "drivers on the input media. Press <Info> to see more information " "about a specific installed driver or <Update> to install one or " "more new drivers.", height=16, width=WIDTH, choices=choices, - menu_height=len(choices), cancel="Back", title="VirtIO Drivers", - extra_button=1, extra_label="Update", default_item=default_item) + ok_label="Info", menu_height=len(choices), cancel="Back", + title="VirtIO Drivers", extra_button=1, extra_label="Update", + default_item=default_item) if code in (d.DIALOG_CANCEL, d.DIALOG_ESC): return True -- GitLab