From 8eab9ed4625a0ee657841fd9e894065acdf6e69c Mon Sep 17 00:00:00 2001 From: Athurg Gooth Date: Fri, 8 Jan 2010 17:23:09 -0500 Subject: Make DEFAULT_LANG mean the default language for displayed messages. Signed-off-by: Loui Chang --- web/lib/translator.inc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'web/lib/translator.inc') diff --git a/web/lib/translator.inc b/web/lib/translator.inc index 8c905515..6d963f50 100644 --- a/web/lib/translator.inc +++ b/web/lib/translator.inc @@ -49,16 +49,16 @@ function __() { # First argument is always string to be translated $tag = $args[0]; - if (empty($LANG) || $LANG == DEFAULT_LANG) + if (empty($LANG) || $LANG == DEFAULT_LANG){ $translated = $tag; + } + + # If there is no translation, just print the given string. + if (empty($_t[$tag])) { + $translated = $tag; + } else { - # If there is no translation, just print the given string. - if (empty($_t[$tag])) { - $translated = $tag; - } - else { - $translated = $_t[$tag]; - } + $translated = $_t[$tag]; } $translated = htmlspecialchars($translated, ENT_QUOTES); -- cgit v1.2.3-24-g4f1b