X-Git-Url: https://git.p6c8.net/jirafeau_project.git/blobdiff_plain/6cbefa8112560ad1ba486652153e0658259de094..048d42ca590d79bf1d30056ce91313ba91746e12:/lib/lang.php diff --git a/lib/lang.php b/lib/lang.php index da28a81..d636b8d 100644 --- a/lib/lang.php +++ b/lib/lang.php @@ -27,7 +27,8 @@ $languages_list = array ('auto' => 'Automatic', 'it' => 'Italiano', 'nl' => 'Nederlands', 'ro' => 'Limba română', - 'sk' => 'Slovenčina'); + 'sk' => 'Slovenčina', + 'zh' => '汉语'); /* Translation */ function t ($text) @@ -80,7 +81,12 @@ function json_lang_generator () /* Detect user's langage if we are in automatic mode. */ if (strcmp ($cfg['lang'], 'auto') == 0) - $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); + { + if (isset ($_SERVER['HTTP_ACCEPT_LANGUAGE'])) + $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2); + else + $l = "en"; + } else $l = $cfg['lang'];