summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorShane Wang <shane.wang@intel.com>2012-03-29 00:34:05 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-03-29 21:12:56 +0100
commit19a5489f4c1eabe412fd246cec7fd3ff15073f23 (patch)
tree8a11236cad5a41c7b05390a58d5acf91e953efec /bitbake
parent96be713241860fc696e6b357c4f837ae1bfb527e (diff)
downloadpoky-19a5489f4c1eabe412fd246cec7fd3ff15073f23.tar.gz
Hob: change some words in settings dialog to make them consistent
(Bitbake rev: 1def8d4d8e725bd9fc4330179557604dda27b917) Signed-off-by: Shane Wang <shane.wang@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hig.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hig.py b/bitbake/lib/bb/ui/crumbs/hig.py
index 4753c92d2a..1aa055edff 100644
--- a/bitbake/lib/bb/ui/crumbs/hig.py
+++ b/bitbake/lib/bb/ui/crumbs/hig.py
@@ -399,7 +399,7 @@ class AdvancedSettingDialog (CrumbsDialog):
399 399
400 sub_vbox = gtk.VBox(False, 6) 400 sub_vbox = gtk.VBox(False, 6)
401 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 401 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
402 label = self.gen_label_widget("<span weight=\"bold\">Packaging Format:</span>") 402 label = self.gen_label_widget("<span weight=\"bold\">Packaging format:</span>")
403 tooltip = "Select package formats that will be used. " 403 tooltip = "Select package formats that will be used. "
404 tooltip += "The first format will be used for final image" 404 tooltip += "The first format will be used for final image"
405 pkgfmt_widget, self.rootfs_combo, self.check_hbox = self.gen_pkgfmt_widget(self.configuration.curr_package_format, self.all_package_formats, tooltip) 405 pkgfmt_widget, self.rootfs_combo, self.check_hbox = self.gen_pkgfmt_widget(self.configuration.curr_package_format, self.all_package_formats, tooltip)
@@ -408,7 +408,7 @@ class AdvancedSettingDialog (CrumbsDialog):
408 408
409 sub_vbox = gtk.VBox(False, 6) 409 sub_vbox = gtk.VBox(False, 6)
410 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 410 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
411 label = self.gen_label_widget("<span weight=\"bold\">Image Rootfs Size: (MB)</span>") 411 label = self.gen_label_widget("<span weight=\"bold\">Image rootfs size: (MB)</span>")
412 tooltip = "Sets the size of your target image.\nThis is the basic size of your target image, unless your selected package size exceeds this value, or you set value to \"Image Extra Size\"." 412 tooltip = "Sets the size of your target image.\nThis is the basic size of your target image, unless your selected package size exceeds this value, or you set value to \"Image Extra Size\"."
413 rootfs_size_widget, self.rootfs_size_spinner = self.gen_spinner_widget(int(self.configuration.image_rootfs_size*1.0/1024), 0, 1024, tooltip) 413 rootfs_size_widget, self.rootfs_size_spinner = self.gen_spinner_widget(int(self.configuration.image_rootfs_size*1.0/1024), 0, 1024, tooltip)
414 sub_vbox.pack_start(label, expand=False, fill=False) 414 sub_vbox.pack_start(label, expand=False, fill=False)
@@ -416,7 +416,7 @@ class AdvancedSettingDialog (CrumbsDialog):
416 416
417 sub_vbox = gtk.VBox(False, 6) 417 sub_vbox = gtk.VBox(False, 6)
418 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 418 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
419 label = self.gen_label_widget("<span weight=\"bold\">Image Extra Size: (MB)</span>") 419 label = self.gen_label_widget("<span weight=\"bold\">Image extra size: (MB)</span>")
420 tooltip = "Sets the extra free space of your target image.\nDefaultly, system will reserve 30% of your image size as your free space. If your image contains zypper, it will bring in 50MB more space. The maximum free space is 1024MB." 420 tooltip = "Sets the extra free space of your target image.\nDefaultly, system will reserve 30% of your image size as your free space. If your image contains zypper, it will bring in 50MB more space. The maximum free space is 1024MB."
421 extra_size_widget, self.extra_size_spinner = self.gen_spinner_widget(int(self.configuration.image_extra_size*1.0/1024), 0, 1024, tooltip) 421 extra_size_widget, self.extra_size_spinner = self.gen_spinner_widget(int(self.configuration.image_extra_size*1.0/1024), 0, 1024, tooltip)
422 sub_vbox.pack_start(label, expand=False, fill=False) 422 sub_vbox.pack_start(label, expand=False, fill=False)
@@ -432,7 +432,7 @@ class AdvancedSettingDialog (CrumbsDialog):
432 432
433 sub_hbox = gtk.HBox(False, 6) 433 sub_hbox = gtk.HBox(False, 6)
434 advanced_vbox.pack_start(sub_hbox, expand=False, fill=False) 434 advanced_vbox.pack_start(sub_hbox, expand=False, fill=False)
435 self.toolchain_checkbox = gtk.CheckButton("Build Toolchain") 435 self.toolchain_checkbox = gtk.CheckButton("Build toolchain")
436 self.toolchain_checkbox.set_tooltip_text("Check this box to build the related toolchain with your image") 436 self.toolchain_checkbox.set_tooltip_text("Check this box to build the related toolchain with your image")
437 self.toolchain_checkbox.set_active(self.configuration.toolchain_build) 437 self.toolchain_checkbox.set_active(self.configuration.toolchain_build)
438 sub_hbox.pack_start(self.toolchain_checkbox, expand=False, fill=False) 438 sub_hbox.pack_start(self.toolchain_checkbox, expand=False, fill=False)
@@ -449,7 +449,7 @@ class AdvancedSettingDialog (CrumbsDialog):
449 449
450 sub_vbox = gtk.VBox(False, 6) 450 sub_vbox = gtk.VBox(False, 6)
451 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 451 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
452 label = self.gen_label_widget("<span weight=\"bold\">Select Distro:</span>") 452 label = self.gen_label_widget("<span weight=\"bold\">Select distro:</span>")
453 tooltip = "This is the Yocto distribution you would like to use" 453 tooltip = "This is the Yocto distribution you would like to use"
454 distro_widget, self.distro_combo = self.gen_combo_widget(self.configuration.curr_distro, self.all_distros, tooltip) 454 distro_widget, self.distro_combo = self.gen_combo_widget(self.configuration.curr_distro, self.all_distros, tooltip)
455 sub_vbox.pack_start(label, expand=False, fill=False) 455 sub_vbox.pack_start(label, expand=False, fill=False)
@@ -457,7 +457,7 @@ class AdvancedSettingDialog (CrumbsDialog):
457 457
458 sub_vbox = gtk.VBox(False, 6) 458 sub_vbox = gtk.VBox(False, 6)
459 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 459 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
460 label = self.gen_label_widget("<span weight=\"bold\">BB_NUMBER_THREADS:</span>") 460 label = self.gen_label_widget("<span weight=\"bold\">BB number threads:</span>")
461 tooltip = "Sets the number of threads that bitbake tasks can run simultaneously" 461 tooltip = "Sets the number of threads that bitbake tasks can run simultaneously"
462 bbthread_widget, self.bb_spinner = self.gen_spinner_widget(self.configuration.bbthread, 1, self.max_threads, tooltip) 462 bbthread_widget, self.bb_spinner = self.gen_spinner_widget(self.configuration.bbthread, 1, self.max_threads, tooltip)
463 sub_vbox.pack_start(label, expand=False, fill=False) 463 sub_vbox.pack_start(label, expand=False, fill=False)
@@ -465,7 +465,7 @@ class AdvancedSettingDialog (CrumbsDialog):
465 465
466 sub_vbox = gtk.VBox(False, 6) 466 sub_vbox = gtk.VBox(False, 6)
467 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 467 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
468 label = self.gen_label_widget("<span weight=\"bold\">PARALLEL_MAKE:</span>") 468 label = self.gen_label_widget("<span weight=\"bold\">Parallel make:</span>")
469 tooltip = "Sets the make parallism, as known as 'make -j'" 469 tooltip = "Sets the make parallism, as known as 'make -j'"
470 pmake_widget, self.pmake_spinner = self.gen_spinner_widget(self.configuration.pmake, 1, self.max_threads, tooltip) 470 pmake_widget, self.pmake_spinner = self.gen_spinner_widget(self.configuration.pmake, 1, self.max_threads, tooltip)
471 sub_vbox.pack_start(label, expand=False, fill=False) 471 sub_vbox.pack_start(label, expand=False, fill=False)
@@ -473,7 +473,7 @@ class AdvancedSettingDialog (CrumbsDialog):
473 473
474 sub_vbox = gtk.VBox(False, 6) 474 sub_vbox = gtk.VBox(False, 6)
475 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 475 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
476 label = self.gen_label_widget("<span weight=\"bold\">Set Download Directory:</span>") 476 label = self.gen_label_widget("<span weight=\"bold\">Set download directory:</span>")
477 tooltip = "Select a folder that caches the upstream project source code" 477 tooltip = "Select a folder that caches the upstream project source code"
478 dldir_widget, self.dldir_text = self.gen_entry_widget(self.configuration.dldir, self, tooltip) 478 dldir_widget, self.dldir_text = self.gen_entry_widget(self.configuration.dldir, self, tooltip)
479 sub_vbox.pack_start(label, expand=False, fill=False) 479 sub_vbox.pack_start(label, expand=False, fill=False)
@@ -481,7 +481,7 @@ class AdvancedSettingDialog (CrumbsDialog):
481 481
482 sub_vbox = gtk.VBox(False, 6) 482 sub_vbox = gtk.VBox(False, 6)
483 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 483 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
484 label = self.gen_label_widget("<span weight=\"bold\">Select SSTATE Directory:</span>") 484 label = self.gen_label_widget("<span weight=\"bold\">Select SSTATE directory:</span>")
485 tooltip = "Select a folder that caches your prebuilt results" 485 tooltip = "Select a folder that caches your prebuilt results"
486 sstatedir_widget, self.sstatedir_text = self.gen_entry_widget(self.configuration.sstatedir, self, tooltip) 486 sstatedir_widget, self.sstatedir_text = self.gen_entry_widget(self.configuration.sstatedir, self, tooltip)
487 sub_vbox.pack_start(label, expand=False, fill=False) 487 sub_vbox.pack_start(label, expand=False, fill=False)
@@ -489,7 +489,7 @@ class AdvancedSettingDialog (CrumbsDialog):
489 489
490 sub_vbox = gtk.VBox(False, 6) 490 sub_vbox = gtk.VBox(False, 6)
491 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 491 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
492 label = self.gen_label_widget("<span weight=\"bold\">Select SSTATE Mirror:</span>") 492 label = self.gen_label_widget("<span weight=\"bold\">Select SSTATE mirror:</span>")
493 tooltip = "Select the prebuilt mirror that will fasten your build speed" 493 tooltip = "Select the prebuilt mirror that will fasten your build speed"
494 sstatemirror_widget, self.sstatemirror_text = self.gen_entry_widget(self.configuration.sstatemirror, self, tooltip) 494 sstatemirror_widget, self.sstatemirror_text = self.gen_entry_widget(self.configuration.sstatemirror, self, tooltip)
495 sub_vbox.pack_start(label, expand=False, fill=False) 495 sub_vbox.pack_start(label, expand=False, fill=False)
@@ -503,7 +503,7 @@ class AdvancedSettingDialog (CrumbsDialog):
503 503
504 sub_vbox = gtk.VBox(False, 6) 504 sub_vbox = gtk.VBox(False, 6)
505 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False) 505 advanced_vbox.pack_start(sub_vbox, expand=False, fill=False)
506 self.proxy_checkbox = gtk.CheckButton("Enable Proxy") 506 self.proxy_checkbox = gtk.CheckButton("Enable proxy")
507 self.proxy_checkbox.set_tooltip_text("Check this box to setup the proxy you specified") 507 self.proxy_checkbox.set_tooltip_text("Check this box to setup the proxy you specified")
508 self.proxy_checkbox.set_active(self.enable_proxy) 508 self.proxy_checkbox.set_active(self.enable_proxy)
509 self.proxy_checkbox.connect("toggled", self.proxy_checkbox_toggled_cb) 509 self.proxy_checkbox.connect("toggled", self.proxy_checkbox_toggled_cb)