Remove space from words "up vote" and "down vote".

This commit is contained in:
/u/rolmos
2013-07-15 13:42:44 -07:00
committed by Neil Williams
parent 071986e0c7
commit 44d0d809f7

View File

@@ -52,13 +52,13 @@
<span class="upvotes">
${unsafe(strings.person_label % dict(num = format_number(thing.a.upvotes),
persons = ungettext("up vote", "up votes",
persons = ungettext("upvote", "upvotes",
thing.a.upvotes)))}
</span>
&#32;
<span class="downvotes">
${unsafe(strings.person_label % dict(num = format_number(thing.a.downvotes),
persons = ungettext("down vote", "down votes",
persons = ungettext("downvote", "downvotes",
thing.a.downvotes)))}
</span>