From 9c13225a162f2bd7c45c63a1b5d03e65b6f7ed1e Mon Sep 17 00:00:00 2001 From: "guy.pyrzak%gmail.com" <> Date: Thu, 10 Apr 2008 21:53:26 +0000 Subject: Bug 419016 - Space between the votes text and period is visually unappealing and confusing. Patch by Guy Pyrzak r=LpSolit a=LpSolit --- template/en/default/bug/edit.html.tmpl | 17 +++++++++++++---- 1 file changed, 13 insertions(+), 4 deletions(-) (limited to 'template') 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 - [% bug.votes %] vote[%IF bug.votes > 1 %]s[% END %] - . + [% bug.votes %] + [% IF bug.votes == 1 %] + vote + [% ELSE %] + votes + [% END %] [% END %] (vote) @@ -795,12 +799,17 @@
[% 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 %] (edit) -- cgit v1.2.3-24-g4f1b