]>
git.p6c8.net - jirafeau.git/blob - lib/lang.php
3 * Jirafeau, your web file repository
4 * Copyright (C) 2015 Jerome Jutteau <j.jutteau@gmail.com>
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Affero General Public License as
8 * published by the Free Software Foundation, either version 3 of the
9 * License, or (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU Affero General Public License for more details.
16 * You should have received a copy of the GNU Affero General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
20 global $languages_list;
21 $languages_list = array ('auto' => 'Automatic',
28 'ro' => 'Limba română',
29 'sk' => 'Slovenčina');
34 $cfg = $GLOBALS['cfg'];
35 $languages_list = $GLOBALS['languages_list'];
37 /* Detect user's langage if we are in automatic mode. */
38 if (strcmp ($cfg['lang'], 'auto') == 0)
39 $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
43 /* Is the langage in the list ? */
45 foreach ($languages_list as $key => $v)
46 if (strcmp ($l, $key) == 0)
49 /* Don't translate english. */
50 if (!($found && strcmp ($l, "en")))
53 /* Open translation file. */
54 $trans_j = file_get_contents (JIRAFEAU_ROOT
. "lib/locales/$l.json");
55 if ($trans_j === FALSE)
59 $trans = json_decode ($trans_j, true);
63 /* Try to find translation. */
64 if (!array_key_exists ($text, $trans))
70 function json_lang_generator ()
72 $cfg = $GLOBALS['cfg'];
73 $languages_list = $GLOBALS['languages_list'];
75 /* Detect user's langage if we are in automatic mode. */
76 if (strcmp ($cfg['lang'], 'auto') == 0)
77 $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
81 /* Is the langage in the list ? */
83 foreach ($languages_list as $key => $v)
84 if (strcmp ($l, $key) == 0)
87 /* Don't translate english. */
88 if (!($found && strcmp ($l, "en")))
91 /* Open translation file. */
92 $trans_j = file_get_contents (JIRAFEAU_ROOT
. "lib/locales/$l.json");
patrick-canterino.de