diff options
author | Loui Chang <louipc.ist@gmail.com> | 2008-12-17 20:38:18 +0100 |
---|---|---|
committer | Loui Chang <louipc.ist@gmail.com> | 2008-12-17 20:38:18 +0100 |
commit | 361609a034e6b402dde0eb94db1dd67cef7c8e6c (patch) | |
tree | 7272d3774202c31a1b33c02fd3a17319ba517bfc /web/lib | |
parent | f2b1d0a9a233239ecf390f267bd92eec45808794 (diff) | |
download | aur-361609a034e6b402dde0eb94db1dd67cef7c8e6c.tar.gz aur-361609a034e6b402dde0eb94db1dd67cef7c8e6c.tar.xz |
Stop printing underscores around untranslated strings.
Signed-off-by: Loui Chang <louipc.ist@gmail.com>
Diffstat (limited to 'web/lib')
-rw-r--r-- | web/lib/translator.inc | 2 |
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); |