diff options
author | Gervase Markham <gerv@gerv.net> | 2011-01-27 12:58:28 +0100 |
---|---|---|
committer | Gervase Markham <gerv@mozilla.org> | 2011-01-27 12:58:28 +0100 |
commit | 7bb569f9b33736c4ed1b02c809dff0e00d9141ad (patch) | |
tree | 4b522d5a0cc99b86975411ae92f64ba6f694452f /template/en/default | |
parent | a44842f1cf50cc332b1e59c7d1448b15d3da01f9 (diff) | |
download | bugzilla-7bb569f9b33736c4ed1b02c809dff0e00d9141ad.tar.gz bugzilla-7bb569f9b33736c4ed1b02c809dff0e00d9141ad.tar.xz |
Allow addition/removal of descriptions of statuses and resolutions. r=mkanat.
https://bugzilla.mozilla.org/show_bug.cgi?id=616453
Diffstat (limited to 'template/en/default')
-rw-r--r-- | template/en/default/pages/fields.html.tmpl | 46 |
1 files changed, 26 insertions, 20 deletions
diff --git a/template/en/default/pages/fields.html.tmpl b/template/en/default/pages/fields.html.tmpl index 9c905abad..312941875 100644 --- a/template/en/default/pages/fields.html.tmpl +++ b/template/en/default/pages/fields.html.tmpl @@ -57,10 +57,10 @@ <tr> <td> <dl> - <dt> + <dt class="unconfirmed"> [% display_value("bug_status", "UNCONFIRMED") FILTER html %] </dt> - <dd> + <dd class="unconfirmed"> This [% terms.bug %] has recently been added to the database. Nobody has confirmed that this [% terms.bug %] is valid. Users who have the "canconfirm" permission set may confirm @@ -70,10 +70,10 @@ <b>[% display_value("bug_status", "RESOLVED") FILTER html %]</b>. </dd> - <dt> + <dt class="confirmed"> [% display_value("bug_status", "CONFIRMED") FILTER html %] </dt> - <dd> + <dd class="confirmed"> This [% terms.bug %] is valid and has recently been filed. [%+ terms.Bugs %] in this state become <b>[% display_value("bug_status", "IN_PROGRESS") FILTER html %]</b> @@ -81,10 +81,10 @@ <b>[% display_value("bug_status", "RESOLVED") FILTER html %]</b>. </dd> - <dt> + <dt class="in_progress"> [% display_value("bug_status", "IN_PROGRESS") FILTER html %] </dt> - <dd> + <dd class="in_progress"> This [% terms.bug %] is not yet resolved, but is assigned to the proper person who is working on the [% terms.bug %]. From here, [%+ terms.bugs %] can be given to another person and become @@ -92,6 +92,8 @@ resolved and become <b>[% display_value("bug_status", "RESOLVED") FILTER html %]</b>. </dd> + + [% Hook.process('open-status') %] </dl> </td> @@ -108,56 +110,58 @@ <tr> <td> <dl> - <dt> + <dt class="resolved"> [% display_value("bug_status", "RESOLVED") FILTER html %] </dt> - <dd> + <dd class="resolved"> A resolution has been performed, and it is awaiting verification by QA. From here [% terms.bugs %] are either reopened and given some open status, or are verified by QA and marked <b>[% display_value("bug_status", "VERIFIED") FILTER html %]</b>. </dd> - <dt> + <dt class="verified"> [% display_value("bug_status", "VERIFIED") FILTER html %] </dt> - <dd> + <dd class="verified"> QA has looked at the [% terms.bug %] and the resolution and agrees that the appropriate resolution has been taken. This is the final status for [% terms.bugs %]. </dd> + + [% Hook.process('closed-status') %] </dl> </td> <td> <dl> - <dt> + <dt class="fixed"> [% display_value("resolution", "FIXED") FILTER html %] </dt> - <dd> + <dd class="fixed"> A fix for this [% terms.bug %] is checked into the tree and tested. </dd> - <dt> + <dt class="invalid"> [% display_value("resolution", "INVALID") FILTER html %] </dt> - <dd> + <dd class="invalid"> The problem described is not [% terms.abug %]. </dd> - <dt> + <dt class="wontfix"> [% display_value("resolution", "WONTFIX") FILTER html %] </dt> - <dd> + <dd class="wontfix"> The problem described is [% terms.abug %] which will never be fixed. </dd> - <dt> + <dt class="duplicate"> [% display_value("resolution", "DUPLICATE") FILTER html %] </dt> - <dd> + <dd class="duplicate"> The problem is a duplicate of an existing [% terms.bug %]. When [% terms.abug %] is marked as a <b>[% display_value("resolution", "DUPLICATE") FILTER html %]</b>, @@ -165,15 +169,17 @@ next to the resolution. </dd> - <dt> + <dt class="worksforme"> [% display_value("resolution", "WORKSFORME") FILTER html %] </dt> - <dd> + <dd class="worksforme"> All attempts at reproducing this [% terms.bug %] were futile, and reading the code produces no clues as to why the described behavior would occur. If more information appears later, the [% terms.bug %] can be reopened. </dd> + + [% Hook.process('resolution') %] </dl> </td> </tr> |