diff options
author | guy.pyrzak%gmail.com <> | 2008-04-10 23:53:26 +0200 |
---|---|---|
committer | guy.pyrzak%gmail.com <> | 2008-04-10 23:53:26 +0200 |
commit | 9c13225a162f2bd7c45c63a1b5d03e65b6f7ed1e (patch) | |
tree | 42b5a654acebec0b34c5ecd9d6ef81f85d07bf0a | |
parent | f677f665134284c329c07061158cd30ba1ae74bb (diff) | |
download | bugzilla-9c13225a162f2bd7c45c63a1b5d03e65b6f7ed1e.tar.gz bugzilla-9c13225a162f2bd7c45c63a1b5d03e65b6f7ed1e.tar.xz |
Bug 419016 - Space between the votes text and period is visually unappealing and confusing.
Patch by Guy Pyrzak <guy.pyrzak@gmail.com> r=LpSolit a=LpSolit
-rw-r--r-- | template/en/default/bug/edit.html.tmpl | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/template/en/default/bug/edit.html.tmpl b/template/en/default/bug/edit.html.tmpl index d096bbbf2..ce2a7b50e 100644 --- a/template/en/default/bug/edit.html.tmpl +++ b/template/en/default/bug/edit.html.tmpl @@ -428,8 +428,12 @@ [% IF bug.votes %] with <a href="votes.cgi?action=show_bug&bug_id=[% bug.bug_id %]"> - [% bug.votes %] vote[%IF bug.votes > 1 %]s[% END %] - </a>. + [% bug.votes %] + [% IF bug.votes == 1 %] + vote + [% ELSE %] + votes + [% END %]</a> [% END %] (<a href="votes.cgi?action=show_user&bug_id= [% bug.bug_id %]#vote_[% bug.bug_id %]">vote</a>) @@ -795,12 +799,17 @@ <br> [% END %] [% END %] - [% bug.cc.size || 0 FILTER html%] total users + [% bug.cc.size || 0 FILTER html %] + [% IF bug.cc.size == 1 %] + user + [% ELSE %] + users + [% END %] [% IF user.id %] [% IF bug.cc.contains( user.email ) %] including you ([% INCLUDE user_identity user=> user FILTER collapse %]) [% END %] - [% END %]. + [% END %] <span id="cc_edit_area_showhide_container" class="bz_default_hidden"> (<a href="#" id="cc_edit_area_showhide">edit</a>) </span> |