X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/deb9d5b531b7d4e2f314db2fc0defd2a50f8b609..0f8fa96f56dde46864336cd4864e158b55248f58:/lib/lang.php?ds=sidebyside diff --git a/lib/lang.php b/lib/lang.php index fba5dbe..0e8203b 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -14,14 +14,19 @@ * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License - * along with this program. If not, see . + * along with this program. If not, see . */ - global $languages_list; - $languages_list = array ('auto' => 'Automatic', - 'de' => 'Deutsch', - 'en' => 'English', - 'fr' => 'Français'); +global $languages_list; +$languages_list = array ('auto' => 'Automatic', + 'de' => 'Deutsch', + 'en' => 'English', + 'fi' => 'Suomi', + 'fr' => 'Français', + 'it' => 'Italiano', + 'nl' => 'Nederlands', + 'ro' => 'Limba română', + 'sk' => 'Slovenčina'); /* Translation */ function t ($text) @@ -52,16 +57,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]; } ?>