]>
git.p6c8.net - jirafeau_mojo42.git/blob - lib/lang.php
bf6365977f4531c4cd2055b637b0f7eaec7bf403
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',
31 'ro' => 'Limba română',
39 $cfg = $GLOBALS['cfg'];
40 $languages_list = $GLOBALS['languages_list'];
42 /* Detect user's langage if we are in automatic mode. */
43 if (strcmp ($cfg['lang'], 'auto') == 0)
45 if (isset ($_SERVER['HTTP_ACCEPT_LANGUAGE']))
46 $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
53 /* Is the langage in the list ? */
55 foreach ($languages_list as $key => $v)
56 if (strcmp ($l, $key) == 0)
59 /* Don't translate english. */
60 if (!($found && strcmp ($l, "en")))
63 /* Open translation file. */
64 $trans_j = file_get_contents (JIRAFEAU_ROOT
. "lib/locales/$l.json");
65 if ($trans_j === FALSE)
69 $trans = json_decode ($trans_j, true);
73 /* Try to find translation. */
74 if (!array_key_exists ($text, $trans))
80 function json_lang_generator ()
82 $cfg = $GLOBALS['cfg'];
83 $languages_list = $GLOBALS['languages_list'];
85 /* Detect user's langage if we are in automatic mode. */
86 if (strcmp ($cfg['lang'], 'auto') == 0)
88 if (isset ($_SERVER['HTTP_ACCEPT_LANGUAGE']))
89 $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
96 /* Is the langage in the list ? */
98 foreach ($languages_list as $key => $v)
99 if (strcmp ($l, $key) == 0)
102 /* Don't translate english. */
103 if (!($found && strcmp ($l, "en")))
106 /* Open translation file. */
107 $trans_j = file_get_contents (JIRAFEAU_ROOT
. "lib/locales/$l.json");
patrick-canterino.de