X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/9d3160e354918d84b84e6979cbd5215435ef3f5c..d9647e1afea29401470efd68730d2562659be006:/lib/lang.php diff --git a/lib/lang.php b/lib/lang.php index 263afb0..5c7566c 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -19,8 +19,11 @@ global $languages_list; $languages_list = array ('auto' => 'Automatic', + 'de' => 'Deutsch', 'en' => 'English', - 'fr' => 'Français'); + 'fi' => 'Suomi', + 'fr' => 'Français', + 'it' => 'Italiano'); /* Translation */ function t ($text) @@ -51,16 +54,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]; } ?>