From patchwork Wed Mar 28 16:36:56 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [bitbake-devel, 3/5] Hob: change some words on image configuration screen to make them consistent Date: Wed, 28 Mar 2012 16:36:56 -0000 From: Shane Wang X-Patchwork-Id: 24757 Message-Id: To: bitbake-devel@lists.openembedded.org Signed-off-by: Shane Wang --- bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py index 9ad1ea4..f9a432f 100644 --- a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py +++ b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py @@ -200,7 +200,7 @@ class ImageConfigurationPage (HobPage): # button to view recipes icon_file = hic.ICON_RCIPE_DISPLAY_FILE hover_file = hic.ICON_RCIPE_HOVER_FILE - self.view_recipes_button = HobImageButton("View Recipes", + self.view_recipes_button = HobImageButton("View recipes", "Add/remove recipes and tasks", icon_file, hover_file) self.view_recipes_button.connect("clicked", self.view_recipes_button_clicked_cb) @@ -208,7 +208,7 @@ class ImageConfigurationPage (HobPage): # button to view packages icon_file = hic.ICON_PACKAGES_DISPLAY_FILE hover_file = hic.ICON_PACKAGES_HOVER_FILE - self.view_packages_button = HobImageButton("View Packages", + self.view_packages_button = HobImageButton("View packages", "Add/remove previously built packages", icon_file, hover_file) self.view_packages_button.connect("clicked", self.view_packages_button_clicked_cb) @@ -241,7 +241,7 @@ class ImageConfigurationPage (HobPage): button_box.pack_end(label, expand=False, fill=False) # create button "Build Packages" - build_packages_button = HobAltButton("Build Packages") + build_packages_button = HobAltButton("Build packages") build_packages_button.connect("clicked", self.build_packages_button_clicked_cb) button_box.pack_end(build_packages_button, expand=False, fill=False)