diff options
| author | Jessica Zhang <jessica.zhang@intel.com> | 2012-09-11 16:55:52 -0700 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2012-09-14 09:50:33 +0100 |
| commit | 043ab5433fa24452aa1bc8e1c1d47a0775f98962 (patch) | |
| tree | faaf05b21c0be8303bdc62a3b8e7eab562bd5314 | |
| parent | 78b14140d6058d60ec8c3fb856a8d9fe6a6d1e98 (diff) | |
| download | poky-043ab5433fa24452aa1bc8e1c1d47a0775f98962.tar.gz | |
bitbake: Fixed hob proxy tab tooltip text per review suggestions [YOCTO #2499]
(Bitbake rev: 485e69d41e220ed4e8efc89a357a8d395e44da9f)
Signed-off-by: Jessica Zhang <jessica.zhang@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | bitbake/lib/bb/ui/crumbs/hig.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py index d41a6b5bde..fb0f05b91b 100644 --- a/bitbake/lib/bb/ui/crumbs/hig.py +++ b/bitbake/lib/bb/ui/crumbs/hig.py | |||
| @@ -567,8 +567,8 @@ class AdvancedSettingDialog (CrumbsDialog): | |||
| 567 | 567 | ||
| 568 | sub_vbox = gtk.VBox(False, 6) | 568 | sub_vbox = gtk.VBox(False, 6) |
| 569 | advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) | 569 | advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) |
| 570 | label = self.gen_label_widget("<span weight=\"bold\">Set the proxies that will be used during fetching source code</span>") | 570 | label = self.gen_label_widget("<span weight=\"bold\">Set the proxies used when fetching source code</span>") |
| 571 | tooltip = "Set the proxies that will be used during fetching source code or set none for direct the Internet connection" | 571 | tooltip = "Set the proxies used when fetching source code. A blank field uses a direct internet connection." |
| 572 | info = HobInfoButton(tooltip, self) | 572 | info = HobInfoButton(tooltip, self) |
| 573 | hbox = gtk.HBox(False, 12) | 573 | hbox = gtk.HBox(False, 12) |
| 574 | hbox.pack_start(label, expand=True, fill=True) | 574 | hbox.pack_start(label, expand=True, fill=True) |
| @@ -576,17 +576,17 @@ class AdvancedSettingDialog (CrumbsDialog): | |||
| 576 | sub_vbox.pack_start(hbox, expand=False, fill=False) | 576 | sub_vbox.pack_start(hbox, expand=False, fill=False) |
| 577 | 577 | ||
| 578 | self.direct_checkbox = gtk.RadioButton(None, "Direct internet connection") | 578 | self.direct_checkbox = gtk.RadioButton(None, "Direct internet connection") |
| 579 | self.direct_checkbox.set_tooltip_text("Check this box to connect the Internet directly without any proxy") | 579 | self.direct_checkbox.set_tooltip_text("Check this box to use a direct internet connection with no proxy") |
| 580 | self.direct_checkbox.set_active(not self.configuration.enable_proxy) | 580 | self.direct_checkbox.set_active(not self.configuration.enable_proxy) |
| 581 | sub_vbox.pack_start(self.direct_checkbox, expand=False, fill=False) | 581 | sub_vbox.pack_start(self.direct_checkbox, expand=False, fill=False) |
| 582 | 582 | ||
| 583 | self.proxy_checkbox = gtk.RadioButton(self.direct_checkbox, "Manual proxy configuration") | 583 | self.proxy_checkbox = gtk.RadioButton(self.direct_checkbox, "Manual proxy configuration") |
| 584 | self.proxy_checkbox.set_tooltip_text("Check this box to setup the proxy you specified") | 584 | self.proxy_checkbox.set_tooltip_text("Check this box to manually set up a specific proxy") |
| 585 | self.proxy_checkbox.set_active(self.configuration.enable_proxy) | 585 | self.proxy_checkbox.set_active(self.configuration.enable_proxy) |
| 586 | sub_vbox.pack_start(self.proxy_checkbox, expand=False, fill=False) | 586 | sub_vbox.pack_start(self.proxy_checkbox, expand=False, fill=False) |
| 587 | 587 | ||
| 588 | self.same_checkbox = gtk.CheckButton("Use the same proxy for all protocols") | 588 | self.same_checkbox = gtk.CheckButton("Use the same proxy for all protocols") |
| 589 | self.same_checkbox.set_tooltip_text("Use the same proxy as the first proxy i.e. http proxy for all protocols") | 589 | self.same_checkbox.set_tooltip_text("Check this box to use the HTTP proxy for all five proxies") |
| 590 | self.same_checkbox.set_active(self.configuration.same_proxy) | 590 | self.same_checkbox.set_active(self.configuration.same_proxy) |
| 591 | hbox = gtk.HBox(False, 12) | 591 | hbox = gtk.HBox(False, 12) |
| 592 | hbox.pack_start(self.same_checkbox, expand=False, fill=False, padding=24) | 592 | hbox.pack_start(self.same_checkbox, expand=False, fill=False, padding=24) |
