X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/dbed483dab23459cde5eaf65323491aa55440aff..26e9e38e96dd008948e4172888fb5a8fc8f439fb:/lib/lang.php diff --git a/lib/lang.php b/lib/lang.php index fba5dbe..7938736 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -52,16 +52,14 @@ function t ($text) /* Decode JSON. */ $trans = json_decode ($trans_j, true); - error_log(print_r($trans, true)); if ($trans === NULL) return $text; /* Try to find translation. */ - $translation = $trans[$text]; - if (empty ($translation)) + if (!array_key_exists ($text, $trans)) return $text; - return $translation; + return $trans[$text]; } ?>