No need to translate "+" and "-"

This commit is contained in:
Keith Mitchell
2012-02-14 08:56:02 -08:00
parent 75bb464a00
commit 2537176f53
3 changed files with 3 additions and 3 deletions

View File

@@ -83,7 +83,7 @@ ${parent.collapsed()}
%else:
onclick="return hidecomment(this)">
%endif
[${_("+") if collapse else unsafe(_("–"))}]
[${"+" if collapse else unsafe("–")}]
</a>
%endif

View File

@@ -47,7 +47,7 @@ ${parent.thing_css_class(what)} ${"new" if thing.new else ""} ${"was-comment" if
%else:
onclick="return hidecomment(this)">
%endif
[${_("+") if collapse else _("-")}]&nbsp;
[${"+" if collapse else unsafe("&ndash;")}]&nbsp;
</a>
<span class="head">
<%

View File

@@ -36,7 +36,7 @@
%>
<div class="thing subreddit id-${thing._fullname}">
<div class="midcol"
${toggle_button("fancy-toggle-button", _("+"), _("-"),
${toggle_button("fancy-toggle-button", "+", "-",
"subscribe('%s')" % thing._fullname,
"unsubscribe('%s')" % thing._fullname,
css_class = "add button", alt_css_class = "remove button",