summaryrefslogtreecommitdiffstats
path: root/template/en/default/account/prefs/footer.html.tmpl
diff options
context:
space:
mode:
authorgerv%gerv.net <>2003-07-04 06:31:13 +0200
committergerv%gerv.net <>2003-07-04 06:31:13 +0200
commit44b48df3901d829e1423749136d142964ccb4a3e (patch)
treef87659c97f6c97654cde63005c514a5504913631 /template/en/default/account/prefs/footer.html.tmpl
parent7b35e1a271f27612cba91216d50e5f497dd0c69a (diff)
downloadbugzilla-44b48df3901d829e1423749136d142964ccb4a3e.tar.gz
bugzilla-44b48df3901d829e1423749136d142964ccb4a3e.tar.xz
Bug 13540 - allow key terms, like "Bugzilla" and "bug", to be altered without changing all the templates. Patch by jwilmoth@starbucks.com; r=gerv, a=justdave.
Diffstat (limited to 'template/en/default/account/prefs/footer.html.tmpl')
-rw-r--r--template/en/default/account/prefs/footer.html.tmpl36
1 files changed, 19 insertions, 17 deletions
diff --git a/template/en/default/account/prefs/footer.html.tmpl b/template/en/default/account/prefs/footer.html.tmpl
index 77ebd1e3a..87728b16a 100644
--- a/template/en/default/account/prefs/footer.html.tmpl
+++ b/template/en/default/account/prefs/footer.html.tmpl
@@ -20,25 +20,27 @@
#%]
[%# INTERFACE:
- # mybugslink: boolean. True if the user wishes the My Bugs link to appear.
+ # mybugslink: boolean. True if the user wishes the My Bugs link to appear.
# queries: array of hashes. May be empty. Each hash has two members:
# name: string. The name of the query.
# footer: boolean. True if the query appears in the footer.
#%]
-
+
+[% PROCESS global/variables.none.tmpl %]
+
<table>
<tr>
- <th align="right">The 'My bugs' link:</th>
+ <th align="right">The 'My [% terms.bugs %]' link:</th>
<td>
<select name="mybugslink">
- <option value="1">should appear on the footer of every page</option>
- <option value="0"
+ <option value="1">should appear on the footer of every page</option>
+ <option value="0"
[% " selected" IF NOT mybugslink %]>should not be displayed
- </option>
+ </option>
</select>
</td>
- </tr>
-
+ </tr>
+
<input type="hidden" name="numqueries" value="[% queries.size %]">
[% IF queries.size %]
[% FOREACH query = queries %]
@@ -46,31 +48,31 @@
<th align="right">Your query named '[% query.name FILTER html %]':</th>
<td>
<select name="query-[% loop.index %]">
- <option value="0">should only appear in the query page</option>
- <option value="1"
+ <option value="0">should only appear in the query page</option>
+ <option value="1"
[% " selected" IF query.footer %]>
should appear on the footer of every page
- </option>
+ </option>
</select>
</td>
</tr>
- <input type="hidden" name="name-[% loop.index %]"
+ <input type="hidden" name="name-[% loop.index %]"
value="[% query.name FILTER html %]">
[% END %]
[% ELSE %]
<tr>
<td colspan="4">
- <br>
- If you create remembered queries using the
+ <br>
+ If you create remembered queries using the
<a href="query.cgi">query page</a>,
- you can then come to this page and choose to have some of them
- appear in the footer of each Bugzilla page.
+ you can then come to this page and choose to have some of them
+ appear in the footer of each [% terms.Bugzilla %] page.
<br>
<br>
</td>
</tr>
[% END %]
-
+
</table>