From patchwork Thu Jun 14 10:10:58 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel,3/3] image-writer: tweak some strings Date: Thu, 14 Jun 2012 10:10:58 -0000 From: Kang Kai X-Patchwork-Id: 29821 Message-Id: <36062e7eb3dcac9799c5b7b0b7f54d7c06e1a48f.1339653356.git.kai.kang@windriver.com> To: Cc: Zhenfeng.Zhao@windriver.com Tweak some strings in accord with the script name 'image writer', and remove extra noun 'button'. Signed-off-by: Kang Kai --- bitbake/bin/image-writer | 10 +++++----- 1 files changed, 5 insertions(+), 5 deletions(-) diff --git a/bitbake/bin/image-writer b/bitbake/bin/image-writer index 3f9f5c1..0b9e450 100755 --- a/bitbake/bin/image-writer +++ b/bitbake/bin/image-writer @@ -33,7 +33,7 @@ from bb.ui.crumbs.hobwidget import HobAltButton, HobButton # I put all the fs bitbake supported here. Need more test. DEPLOYABLE_IMAGE_TYPES = ["jffs2", "cramfs", "ext2", "ext3", "btrfs", "squashfs", "ubi", "vmdk"] -Title = "USB Image Maker" +Title = "USB Image Writer" class DeployWindow(gtk.Window): def __init__(self, image_path=''): @@ -43,13 +43,13 @@ class DeployWindow(gtk.Window): valid = True if not os.path.exists(image_path): valid = False - lbl = "Invalid image file path: %s.\nPress Select Image button to select an image." % image_path + lbl = "Invalid image file path: %s.\nPress Select Image to select an image." % image_path else: image_path = os.path.abspath(image_path) extend_name = os.path.splitext(image_path)[1][1:] if extend_name not in DEPLOYABLE_IMAGE_TYPES: valid = False - lbl = "Undeployable imge type: %s\nPress Select Image button to select an image." % extend_name + lbl = "Undeployable imge type: %s\nPress Select Image to select an image." % extend_name if not valid: image_path = '' @@ -66,8 +66,8 @@ class DeployWindow(gtk.Window): HobAltButton.style_button(close_button) close_button.connect('clicked', gtk.main_quit) - make_button = self.deploy_dialog.add_button("Make USB image", gtk.RESPONSE_YES) - HobAltButton.style_button(make_button) + write_button = self.deploy_dialog.add_button("Write USB image", gtk.RESPONSE_YES) + HobAltButton.style_button(write_button) self.deploy_dialog.connect('select_image_clicked', self.select_image_clicked_cb) self.deploy_dialog.connect('destroy', gtk.main_quit)