]>
git.p6c8.net - jirafeau_project.git/blob - lib/lang.php
bf74e8d77a4acef42c7161a547b2e6f4052e81ae
3 * Jirafeau, your web file repository
4 * Copyright (C) 2012 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 <http://www.gnu.org/licenses/>.
20 global $languages_list;
21 $languages_list = array ('auto' => 'Automatic',
28 $cfg = $GLOBALS['cfg'];
29 $languages_list = $GLOBALS['languages_list'];
31 /* Detect user's langage if we are in automatic mode. */
32 if (strcmp ($cfg['lang'], 'auto') == 0)
33 $l = substr ($_SERVER['HTTP_ACCEPT_LANGUAGE'], 0, 2);
37 /* Is the langage in the list ? */
39 foreach ($languages_list as $key => $v)
40 if (strcmp ($l, $key) == 0)
43 /* Get translation execpt for english. */
44 if ($found && strcmp ($l, "en"))
46 /* $tr is defined in this requirement. */
47 require (JIRAFEAU_ROOT
. "lib/lang/$l.php");
49 foreach ($tr as $o => $t)
50 if (strcmp ($text, $o) == 0)
53 /* Return original text if no translation is found or already in english. */
patrick-canterino.de