summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2012-03-23 19:21:25 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-23 16:10:25 +0000
commitad5dd7d3ca1d3d53cac5fab459b787bf9c49d899 (patch)
tree7785fedc42d24fedf67ca1b8b186a9b4dc39ff85 /bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
parent98fa27c4c992dacae93cb127319271c87a9c2363 (diff)
downloadpoky-ad5dd7d3ca1d3d53cac5fab459b787bf9c49d899.tar.gz
Hob: Change the descriptions for view_recipe_button and view_package_button
Change the text of view_recipe_button to 'Add/remove recipes and tasks' Change the text of view_packages_button to 'Add/remove previously built packages' [Yocto #2146] (Bitbake rev: 0348ef08db9ac425d83126d2e6eb465adc28b110) Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py')
-rw-r--r--bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
index da758a3e0d..8e0e9fce99 100644
--- a/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
+++ b/bitbake/lib/bb/ui/crumbs/imageconfigurationpage.py
@@ -193,7 +193,7 @@ class ImageConfigurationPage (HobPage):
193 icon_file = hic.ICON_RCIPE_DISPLAY_FILE 193 icon_file = hic.ICON_RCIPE_DISPLAY_FILE
194 hover_file = hic.ICON_RCIPE_HOVER_FILE 194 hover_file = hic.ICON_RCIPE_HOVER_FILE
195 self.view_recipes_button = HobImageButton("View Recipes", 195 self.view_recipes_button = HobImageButton("View Recipes",
196 "Add/remove recipes and collections", 196 "Add/remove recipes and tasks",
197 icon_file, hover_file) 197 icon_file, hover_file)
198 self.view_recipes_button.connect("clicked", self.view_recipes_button_clicked_cb) 198 self.view_recipes_button.connect("clicked", self.view_recipes_button_clicked_cb)
199 199
@@ -201,7 +201,7 @@ class ImageConfigurationPage (HobPage):
201 icon_file = hic.ICON_PACKAGES_DISPLAY_FILE 201 icon_file = hic.ICON_PACKAGES_DISPLAY_FILE
202 hover_file = hic.ICON_PACKAGES_HOVER_FILE 202 hover_file = hic.ICON_PACKAGES_HOVER_FILE
203 self.view_packages_button = HobImageButton("View Packages", 203 self.view_packages_button = HobImageButton("View Packages",
204 "Add/remove previously built packages to/from your image", 204 "Add/remove previously built packages",
205 icon_file, hover_file) 205 icon_file, hover_file)
206 self.view_packages_button.connect("clicked", self.view_packages_button_clicked_cb) 206 self.view_packages_button.connect("clicked", self.view_packages_button_clicked_cb)
207 207