summaryrefslogtreecommitdiffstats
path: root/template
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2014-10-02 19:09:30 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2014-10-02 19:09:30 +0200
commitd33c399b231a1d47a3fb94a770256369dbb32e6a (patch)
tree96db97ec199ed1c34ab2bf14134b51e7a1bafe55 /template
parenta9efeb7460d263ed929947f9ca380a9616584f91 (diff)
downloadbugzilla-d33c399b231a1d47a3fb94a770256369dbb32e6a.tar.gz
bugzilla-d33c399b231a1d47a3fb94a770256369dbb32e6a.tar.xz
Bug 1076155: Remove "?" from table columns and labels + code cleanup
r=dkl a=justdave
Diffstat (limited to 'template')
-rw-r--r--template/en/default/account/prefs/apikey.html.tmpl2
-rw-r--r--template/en/default/flag/list.html.tmpl15
2 files changed, 7 insertions, 10 deletions
diff --git a/template/en/default/account/prefs/apikey.html.tmpl b/template/en/default/account/prefs/apikey.html.tmpl
index 970258e50..bed3f3809 100644
--- a/template/en/default/account/prefs/apikey.html.tmpl
+++ b/template/en/default/account/prefs/apikey.html.tmpl
@@ -29,7 +29,7 @@ here.</p>
<th>API key</th>
<th>Description (optional)</th>
<th>Last used</th>
- <th>Revoked?</th>
+ <th>Revoked</th>
</tr>
[% FOREACH api_key IN api_keys %]
diff --git a/template/en/default/flag/list.html.tmpl b/template/en/default/flag/list.html.tmpl
index 455238cfc..7547e5687 100644
--- a/template/en/default/flag/list.html.tmpl
+++ b/template/en/default/flag/list.html.tmpl
@@ -173,17 +173,14 @@
[% END %]
<td>
[% IF type.is_multiplicable && edit_multiple_bugs %]
- <input type="checkbox"
- name="flags_add-[% type.id %]"
- id="flags_add-[% type.id %]">
- <label for="flags_add-[% type.id %]">
- <a class="field_help_link"
- title="If ticked, always create a new flag. Leaving it unchecked will update existing flag(s) and add a new flag if it does not exist">
- Always add?
- </a>
+ <input type="checkbox" name="flags_add-[% type.id %]"
+ id="flags_add-[% type.id %]" value="1">
+ <label for="flags_add-[% type.id %]"
+ title="If ticked, always create a new flag. Leaving it unchecked will update existing flag(s) and add a new flag if it does not exist">
+ Always add
</label>
[% END %]
- <td>
+ </td>
</tr>
</tbody>
[% END %]