Stop printing underscores around untranslated strings.

Signed-off-by: Loui Chang <louipc.ist@gmail.com>
This commit is contained in:
Loui Chang 2008-12-17 14:38:18 -05:00
parent f2b1d0a9a2
commit 361609a034

View file

@ -45,7 +45,7 @@ function __() {
# if it's a supported language, but there isn't a translation, # if it's a supported language, but there isn't a translation,
# alert the visitor to the missing translation. # alert the visitor to the missing translation.
# #
$translated = "_${tag}_"; $translated = $tag;
} }
$translated = htmlspecialchars($translated, ENT_QUOTES); $translated = htmlspecialchars($translated, ENT_QUOTES);