r1052: Remove the localization table and the XML strings concept from the language...
[bugdar.git] / includes / language.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar [#]version[#]
5 || # Copyright ©2002-[#]year[#] Blue Static
6 || #
7 || # This program is free software; you can redistribute it and/or modify
8 || # it under the terms of the GNU General Public License as published by
9 || # the Free Software Foundation; version [#]gpl[#] of the License.
10 || #
11 || # This program is distributed in the hope that it will be useful, but
12 || # WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
13 || # or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 || # more details.
15 || #
16 || # You should have received a copy of the GNU General Public License along
17 || # with this program; if not, write to the Free Software Foundation, Inc.,
18 || # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
19 || ###################################################################
20 \*=====================================================================*/
21
22 // ###################################################################
23 // LEXICAL STRING CONSTANTS
24
25 $lang->setlex('error_invalid_id', _('That is an invalid ID.'));
26
27 // ###################################################################
28 // determines the user's language
29 function fetch_user_language()
30 {
31 global $bugsys;
32
33 if ($bugsys->userinfo['userid'])
34 {
35 $languageid = $bugsys->userinfo['languageid'];
36 $language = $bugsys->datastore['language']["$languageid"];
37 }
38
39 if (!$languageid AND is_array($bugsys->datastore['language']))
40 {
41 foreach ($bugsys->datastore['language'] AS $language)
42 {
43 if ($bugsys->options['defaultlanguage'] == $language['languageid'])
44 {
45 $languageid = $language['languageid'];
46 $language = $bugsys->datastore['language']["$languageid"];
47 break;
48 }
49 }
50 }
51
52 $lang['id'] = $language['languageid'];
53 $lang['charset'] = $language['charset'];
54 $lang['direction'] = $language['direction'];
55 $lang['code'] = $language['languagecode'];
56
57 return $lang;
58 }
59
60 /*=====================================================================*\
61 || ###################################################################
62 || # $HeadURL$
63 || # $Id$
64 || ###################################################################
65 \*=====================================================================*/
66 ?>