1
0
mirror of https://git.yoctoproject.org/poky synced 2026-07-17 04:07:06 +00:00
Files
Belen Barros Pena 52ed413c3c bitbake: toaster: Changes to help text
All help text strings have been reviewed by the
technical writer, and some of them by Paul Eggleton.
This patch implements their suggested changes.

(Bitbake rev: ce89530b178be2f3202d45523ef1340e00df05be)

Signed-off-by: Belen Barros Pena <belen.barros.pena@intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2014-04-05 14:55:28 +01:00

34 lines
1.4 KiB
HTML

<ul class="nav nav-pills">
{% if active_tab == "detail" %}
<li class="active">
{% else %}
<li class="">
{% endif %}
<a href="{% url 'package_included_detail' build.id target.id package.id %}">
<i class="icon-question-sign get-help" title="The files this package adds to the image root file system"></i>
Files in root file system ({{packageFileCount}})
</a>
</li>
{% if active_tab == "dependencies" %}
<li class="active">
{% else %}
<li class="">
{% endif %}
<a href="{% url 'package_included_dependencies' build.id target.id package.id %}">
<i class="icon-question-sign get-help" data-toggle="tooltip" title="Package runtime dependencies"></i>
Runtime dependencies ({{dependency_count}})
</a>
</li>
{% if active_tab == "reverse" %}
<li class="active">
{% else %}
<li class="">
{% endif %}
<a href="{% url 'package_included_reverse_dependencies' build.id target.id package.id %}">
<i class="icon-question-sign get-help" data-toggle="tooltip" title="The package runtime reverse dependencies (i.e. the packages in this image that depend on this package). Reverse dependencies reflect only the 'depends' dependency type"></i>
Reverse runtime dependencies ({{reverse_count}})
</a>
</li>
</ul>