bitbake: toaster: Fix help text typos

Fix a couple of typos in the help text of the builds
and recipes tables.

(Bitbake rev: fd7c7b064f14d15131322610e552483ce670614d)

Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Belen Barros Pena
2014-03-15 14:48:49 +00:00
committed by Richard Purdie
parent b7219721c4
commit bca174a63f

View File

@@ -317,7 +317,7 @@ def builds(request):
}
},
{'name': 'Warnings', 'clclass': 'warnings_no',
'qhelp': "How many warnigns were encountered during the build (if any)",
'qhelp': "How many warnings were encountered during the build (if any)",
'orderfield': _get_toggle_order(request, "warnings_no", True),
'ordericon':_get_toggle_order_icon(request, "warnings_no"),
'filter' : {'class' : 'warnings_no',
@@ -942,26 +942,26 @@ def recipes(request, build_id):
},
{
'name':'Layer',
'qhelp':'The name of the layer prodiving the recipe',
'qhelp':'The name of the layer providing the recipe',
'orderfield': _get_toggle_order(request, "layer_version__layer__name"),
'ordericon':_get_toggle_order_icon(request, "layer_version__layer__name"),
'clclass': 'layer_version__layer__name', 'hidden': 0,
},
{
'name':'Layer branch',
'qhelp':'The Git branch of the layer prodiving the recipe',
'qhelp':'The Git branch of the layer providing the recipe',
'orderfield': _get_toggle_order(request, "layer_version__branch"),
'ordericon':_get_toggle_order_icon(request, "layer_version__branch"),
'clclass': 'layer_version__branch', 'hidden': 1,
},
{
'name':'Layer commit',
'qhelp':'The Git commit of the layer prodiving the recipe',
'qhelp':'The Git commit of the layer providing the recipe',
'clclass': 'layer_version__layer__commit', 'hidden': 1,
},
{
'name':'Layer directory',
'qhelp':'Location in disk of the layer prodiving the recipe',
'qhelp':'Location in disk of the layer providing the recipe',
'orderfield': _get_toggle_order(request, "layer_version__layer__local_path"),
'ordericon':_get_toggle_order_icon(request, "layer_version__layer__local_path"),
'clclass': 'layer_version__layer__local_path', 'hidden': 1,