diff options
Diffstat (limited to 'web/lib/translator.inc')
-rw-r--r-- | web/lib/translator.inc | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/web/lib/translator.inc b/web/lib/translator.inc index 8c90551..6d963f5 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); |