]>
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',
29 'ro' => 'Limba română',
30 'sk' => 'Slovenčina');
35 $cfg = $GLOBALS['cfg'];
36 $languages_list = $GLOBALS['languages_list'];
38 /* Detect user's langage if we are in automatic mode. */
39 if (strcmp ($cfg['lang'], 'auto') == 0)
41 if (isset ($_SERVER['HTTP_ACCEPT_LANGUAGE']))
42 $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
49 /* Is the langage in the list ? */
51 foreach ($languages_list as $key => $v)
52 if (strcmp ($l, $key) == 0)
55 /* Don't translate english. */
56 if (!($found && strcmp ($l, "en")))
59 /* Open translation file. */
60 $trans_j = file_get_contents (JIRAFEAU_ROOT
. "lib/locales/$l.json");
61 if ($trans_j === FALSE)
65 $trans = json_decode ($trans_j, true);
69 /* Try to find translation. */
70 if (!array_key_exists ($text, $trans))
76 function json_lang_generator ()
78 $cfg = $GLOBALS['cfg'];
79 $languages_list = $GLOBALS['languages_list'];
81 /* Detect user's langage if we are in automatic mode. */
82 if (strcmp ($cfg['lang'], 'auto') == 0)
83 $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
87 /* Is the langage in the list ? */
89 foreach ($languages_list as $key => $v)
90 if (strcmp ($l, $key) == 0)
93 /* Don't translate english. */
94 if (!($found && strcmp ($l, "en")))
97 /* Open translation file. */
98 $trans_j = file_get_contents (JIRAFEAU_ROOT
. "lib/locales/$l.json");
patrick-canterino.de