X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/deb9d5b531b7d4e2f314db2fc0defd2a50f8b609..b325aca57d90537a7203c1490afe9f4d2c874eb1:/lib/lang.php?ds=sidebyside diff --git a/lib/lang.php b/lib/lang.php index fba5dbe..5c7566c 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -21,7 +21,9 @@ $languages_list = array ('auto' => 'Automatic', 'de' => 'Deutsch', 'en' => 'English', - 'fr' => 'Français'); + 'fi' => 'Suomi', + 'fr' => 'Français', + 'it' => 'Italiano'); /* Translation */ function t ($text) @@ -52,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]; } ?>