summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLoui Chang <louipc.ist@gmail.com>2008-12-17 20:38:18 +0100
committerLoui Chang <louipc.ist@gmail.com>2008-12-17 20:38:18 +0100
commit361609a034e6b402dde0eb94db1dd67cef7c8e6c (patch)
tree7272d3774202c31a1b33c02fd3a17319ba517bfc
parentf2b1d0a9a233239ecf390f267bd92eec45808794 (diff)
downloadaur-361609a034e6b402dde0eb94db1dd67cef7c8e6c.tar.gz
aur-361609a034e6b402dde0eb94db1dd67cef7c8e6c.tar.xz
Stop printing underscores around untranslated strings.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
-rw-r--r--web/lib/translator.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/lib/translator.inc b/web/lib/translator.inc
index fb9ed635..2bb3b23c 100644
--- a/web/lib/translator.inc
+++ b/web/lib/translator.inc
@@ -45,7 +45,7 @@ function __() {
# if it's a supported language, but there isn't a translation,
# alert the visitor to the missing translation.
#
- $translated = "_${tag}_";
+ $translated = $tag;
}
$translated = htmlspecialchars($translated, ENT_QUOTES);