Updating functions_datastore.php
[bugdar.git] / includes / language.php
1 <?php
2 /*=====================================================================*\
3 || ###################################################################
4 || # Bugdar
5 || # Copyright ©2002-2007 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 2 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 // for those who don't have gettext
24
25 if (!function_exists('gettext'))
26 {
27 function gettext($str) { return $str; }
28 function _($str) { return $str; }
29 function bindtextdomain() {}
30 function textdomain() {}
31 function bind_textdomain_codeset() {}
32
33 BSApp::debug('NOTICE: gettext not installed');
34 }
35
36 // ###################################################################
37 // LEXICAL STRING CONSTANTS
38
39 define('L_INVALID_ID', T('That is an invalid ID.'));
40
41 // ###################################################################
42 // determines the user's language
43 function fetch_user_language()
44 {
45 global $bugsys;
46
47 if (bugdar::$userinfo['userid'])
48 {
49 $languageid = bugdar::$userinfo['languageid'];
50 $language = bugdar::$datastore['language']["$languageid"];
51 }
52
53 if (!$languageid AND is_array(bugdar::$datastore['language']))
54 {
55 foreach (bugdar::$datastore['language'] AS $language)
56 {
57 if (bugdar::$options['defaultlanguage'] == $language['languageid'])
58 {
59 $languageid = $language['languageid'];
60 $language = bugdar::$datastore['language']["$languageid"];
61 break;
62 }
63 }
64 }
65
66 $lang['id'] = $language['languageid'];
67 $lang['charset'] = $language['charset'];
68 $lang['direction'] = $language['direction'];
69 $lang['langcode'] = $language['langcode'];
70
71 return $lang;
72 }
73
74 /**
75 * Translation function. This will take in a native (English) string and return either
76 * a translated version or, if it cannot find one, the native string back. If the devgettext
77 * setting is enabled, this will use MOReader to load a .mo file, otherwise it will fall back onto
78 * making a call to _(), the built-in Gettext implementation.
79 *
80 * @param string Native string
81 *
82 * @return string Translated string
83 */
84 function T($str)
85 {
86 global $bugsys;
87 static $mo;
88
89 if (!bugdar::$options['devgettext'])
90 {
91 return _($str);
92 }
93
94 if ($mo === null)
95 {
96 require_once './includes/class_mo.php';
97 $info = fetch_user_language();
98 if ($info['langcode'] == null)
99 {
100 BSApp::debug("cannot translate '$str'");
101 return $str;
102 }
103 $mo = new MOReader("locale/$info[langcode]/LC_MESSAGES/messages.mo");
104 }
105
106 return $mo->T($str);
107 }
108
109 /*=====================================================================*\
110 || ###################################################################
111 || # $HeadURL$
112 || # $Id$
113 || ###################################################################
114 \*=====================================================================*/
115 ?>