X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/9d3160e354918d84b84e6979cbd5215435ef3f5c..78876db885c993785ff5f9d87bc3345810f4794c:/lib/lang.php diff --git a/lib/lang.php b/lib/lang.php index 263afb0..7938736 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -19,6 +19,7 @@ global $languages_list; $languages_list = array ('auto' => 'Automatic', + 'de' => 'Deutsch', 'en' => 'English', 'fr' => 'Français'); @@ -51,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]; } ?>