From 79df63514dd0fe87968a89b153858fb320293dad Mon Sep 17 00:00:00 2001 From: Kang Kai Date: Thu, 14 Jun 2012 18:10:58 +0800 Subject: image-writer: tweak some strings Tweak some strings in accord with the script name 'image writer', and remove extra noun 'button'. (Bitbake rev: d2d65335e8fc2417ebd3910f645cc00a4abfbeaa) Signed-off-by: Kang Kai Signed-off-by: Richard Purdie --- bitbake/bin/image-writer | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'bitbake/bin') diff --git a/bitbake/bin/image-writer b/bitbake/bin/image-writer index 3f9f5c1ed5..0b9e4505ae 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) -- cgit v1.2.3-54-g00ecf