summaryrefslogtreecommitdiffstats
path: root/template/en/default/bug/knob.html.tmpl
diff options
context:
space:
mode:
authorgerv%gerv.net <>2005-05-10 07:49:41 +0200
committergerv%gerv.net <>2005-05-10 07:49:41 +0200
commitdf89108542a59e1a3a3ccf2cdcab61407989bd46 (patch)
tree099321c9ae0440520e6f84acdad4ba10d234dfd5 /template/en/default/bug/knob.html.tmpl
parentab723ea0b90a8a5aae1b264246a17936d7d230b5 (diff)
downloadbugzilla-df89108542a59e1a3a3ccf2cdcab61407989bd46.tar.gz
bugzilla-df89108542a59e1a3a3ccf2cdcab61407989bd46.tar.xz
Bug 215148 - make status and resolution localisable. Patch by eseyman@linagora.com; r=gerv, a=myk.
Diffstat (limited to 'template/en/default/bug/knob.html.tmpl')
-rw-r--r--template/en/default/bug/knob.html.tmpl20
1 files changed, 10 insertions, 10 deletions
diff --git a/template/en/default/bug/knob.html.tmpl b/template/en/default/bug/knob.html.tmpl
index f73821675..15bbcbacd 100644
--- a/template/en/default/bug/knob.html.tmpl
+++ b/template/en/default/bug/knob.html.tmpl
@@ -27,8 +27,8 @@
<br>
<input type="radio" id="knob-leave" name="knob" value="none" checked="checked">
<label for="knob-leave">
- Leave as <b>[% bug.bug_status FILTER html %]&nbsp;
- [% bug.resolution FILTER html %]</b>
+ Leave as <b>[% status_descs.${bug.bug_status} FILTER html %]&nbsp;
+ [% resolution_descs.${bug.resolution} FILTER html %]</b>
</label>
<br>
@@ -37,7 +37,7 @@
[% IF bug.isunconfirmed && bug.user.canconfirm %]
<input type="radio" id="knob-confirm" name="knob" value="confirm">
<label for="knob-confirm">
- Confirm [% terms.bug %] (change status to <b>NEW</b>)
+ Confirm [% terms.bug %] (change status to <b>[% status_descs.NEW FILTER html %]</b>)
</label>
<br>
[% knum = knum + 1 %]
@@ -49,7 +49,7 @@
<label for="knob-accept">
Accept [% terms.bug %] (
[% IF bug.isunconfirmed %]confirm [% terms.bug %], and [% END %]change
- status to <b>ASSIGNED</b>)
+ status to <b>[% status_descs.ASSIGNED FILTER html %]</b>)
</label>
<br>
[% knum = knum + 1 %]
@@ -61,7 +61,7 @@
<input type="radio" id="knob-clear" name="knob" value="clearresolution">
<label for="knob-clear">
Clear the resolution (remove the current resolution of
- <b>[% bug.resolution FILTER html %]</b>)
+ <b>[% status_descs.${bug.resolution} FILTER html %]</b>)
</label>
<br>
[% knum = knum + 1 %]
@@ -75,7 +75,7 @@
<select name="resolution"
onchange="document.changeform.knob[[% knum %]].checked=true">
[% FOREACH r = bug.choices.resolution %]
- <option value="[% r FILTER html %]">[% r FILTER html %]</option>
+ <option value="[% r FILTER html %]">[% resolution_descs.${r} FILTER html %]</option>
[% END %]
</select>
<br>
@@ -110,7 +110,7 @@
[% IF bug.isunconfirmed && bug.user.canconfirm %]
&nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox" id="andconfirm" name="andconfirm">
<label for="andconfirm">
- and confirm [% terms.bug %] (change status to <b>NEW</b>)
+ and confirm [% terms.bug %] (change status to <b>[% status_descs.NEW FILTER html %]</b>)
</label>
<br>
[% END %]
@@ -126,7 +126,7 @@
[% IF bug.isunconfirmed && bug.user.canconfirm %]
&nbsp;&nbsp;&nbsp;&nbsp;<input type="checkbox" id="compconfirm" name="compconfirm">
<label for="compconfirm">
- and confirm [% terms.bug %] (change status to <b>NEW</b>)
+ and confirm [% terms.bug %] (change status to <b>[% status_descs.NEW FILTER html %]</b>)
</label>
<br>
[% END %]
@@ -145,7 +145,7 @@
[% IF bug.bug_status == "RESOLVED" %]
<input type="radio" id="knob-verify" name="knob" value="verify">
<label for="knob-verify">
- Mark [% terms.bug %] as <b>VERIFIED</b>
+ Mark [% terms.bug %] as <b>[% status_descs.VERIFIED FILTER html %]</b>
</label>
<br>
[% knum = knum + 1 %]
@@ -153,7 +153,7 @@
[% IF bug.bug_status != "CLOSED" %]
<input type="radio" id="knob-close" name="knob" value="close">
<label for="knob-close">
- Mark [% terms.bug %] as <b>CLOSED</b>
+ Mark [% terms.bug %] as <b>[% status_descs.CLOSED FILTER html %]</b>
</label>
<br>
[% knum = knum + 1 %]