X-Git-Url: https://git.p6c8.net/jirafeau.git/blobdiff_plain/d71d969adf8bb35cd6dc8d0ebbe4d7d194e91504..36b395461e18a6023134743a29c10a0c66cadf0b:/lib/lang.php?ds=sidebyside

diff --git a/lib/lang.php b/lib/lang.php
index 225323f..d636b8d 100644
--- a/lib/lang.php
+++ b/lib/lang.php
@@ -21,12 +21,14 @@ global $languages_list;
 $languages_list = array ('auto' => 'Automatic',
                          'de'   => 'Deutsch',
                          'en'   => 'English',
+                         'hu'   => 'Magyar',
                          'fi'   => 'Suomi',
                          'fr'   => 'Français',
                          'it'   => 'Italiano',
                          'nl'   => 'Nederlands',
                          'ro'   => 'Limba română',
-                         'sk'   => 'Slovenčina');
+                         'sk'   => 'Slovenčina',
+                         'zh'   => '汉语');
 
 /* Translation */
 function t ($text)
@@ -36,7 +38,12 @@ function t ($text)
 
     /* 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'];
 
@@ -74,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'];