diff options
author | Belen Barros Pena <belen.barros.pena@linux.intel.com> | 2016-03-07 12:03:34 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-03-07 17:23:03 +0000 |
commit | 5b8b3993e4a070c850ff31d5c150fca3f2681de9 (patch) | |
tree | 5598c43d21974c1f6e5d5d124285d32b98e2117e /bitbake/lib/toaster/toastergui/tables.py | |
parent | 07ead9869a9a7f9a006bf1ab135a3f6d5ba52a2d (diff) | |
download | poky-5b8b3993e4a070c850ff31d5c150fca3f2681de9.tar.gz |
bitbake: toaster: change 'revision' to 'Git revision'
I've received some feedback on the 'Revision' label we use in the import
layer page. It is not quite communicating that what's required is a Git
revision. Changing it to 'Git revision' to make it a bit more specific.
The change applies not only to the import layer page, but to all pages
showing revision information in the project configuration section.
For more on the feedback received, check
https://bugzilla.yoctoproject.org/show_bug.cgi?id=8429#c3
(Bitbake rev: 09392f36a4f115c2432302125e8cac48a9aa304f)
Signed-off-by: Belen Barros Pena <belen.barros.pena@linux.intel.com>
Signed-off-by: Elliot Smith <elliot.smith@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/tables.py')
-rw-r--r-- | bitbake/lib/toaster/toastergui/tables.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/bitbake/lib/toaster/toastergui/tables.py b/bitbake/lib/toaster/toastergui/tables.py index 71892e2f33..67a659222f 100644 --- a/bitbake/lib/toaster/toastergui/tables.py +++ b/bitbake/lib/toaster/toastergui/tables.py | |||
@@ -158,7 +158,7 @@ class LayersTable(ToasterTable): | |||
158 | {% endwith %} | 158 | {% endwith %} |
159 | ''' | 159 | ''' |
160 | 160 | ||
161 | self.add_column(title="Revision", | 161 | self.add_column(title="Git revision", |
162 | help_text="The Git branch, tag or commit. For the layers from the OpenEmbedded layer source, the revision is always the branch compatible with the Yocto Project version you selected for this project", | 162 | help_text="The Git branch, tag or commit. For the layers from the OpenEmbedded layer source, the revision is always the branch compatible with the Yocto Project version you selected for this project", |
163 | static_data_name="revision", | 163 | static_data_name="revision", |
164 | static_data_template=revision_template) | 164 | static_data_template=revision_template) |
@@ -269,7 +269,7 @@ class MachinesTable(ToasterTable): | |||
269 | static_data_template=layer_link_template, | 269 | static_data_template=layer_link_template, |
270 | orderable=True) | 270 | orderable=True) |
271 | 271 | ||
272 | self.add_column(title="Revision", | 272 | self.add_column(title="Git revision", |
273 | help_text="The Git branch, tag or commit. For the layers from the OpenEmbedded layer source, the revision is always the branch compatible with the Yocto Project version you selected for this project", | 273 | help_text="The Git branch, tag or commit. For the layers from the OpenEmbedded layer source, the revision is always the branch compatible with the Yocto Project version you selected for this project", |
274 | hidden=True, | 274 | hidden=True, |
275 | field_name="layer_version__get_vcs_reference") | 275 | field_name="layer_version__get_vcs_reference") |
@@ -428,7 +428,7 @@ class RecipesTable(ToasterTable): | |||
428 | orderable=True, | 428 | orderable=True, |
429 | field_name="license") | 429 | field_name="license") |
430 | 430 | ||
431 | self.add_column(title="Revision", | 431 | self.add_column(title="Git revision", |
432 | hidden=True, | 432 | hidden=True, |
433 | field_name="layer_version__get_vcs_reference") | 433 | field_name="layer_version__get_vcs_reference") |
434 | 434 | ||