forked from anuko/timetracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathI18n.class.php
More file actions
173 lines (157 loc) · 5.46 KB
/
Copy pathI18n.class.php
File metadata and controls
173 lines (157 loc) · 5.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<?php
// +----------------------------------------------------------------------+
// | Anuko Time Tracker
// +----------------------------------------------------------------------+
// | Copyright (c) Anuko International Ltd. (https://www.anuko.com)
// +----------------------------------------------------------------------+
// | LIBERAL FREEWARE LICENSE: This source code document may be used
// | by anyone for any purpose, and freely redistributed alone or in
// | combination with other software, provided that the license is obeyed.
// |
// | There are only two ways to violate the license:
// |
// | 1. To redistribute this code in source form, with the copyright
// | notice or license removed or altered. (Distributing in compiled
// | forms without embedded copyright notices is permitted).
// |
// | 2. To redistribute modified versions of this code in *any* form
// | that bears insufficient indications that the modifications are
// | not the work of the original author(s).
// |
// | This license applies to this document only, not any other software
// | that it may be combined with.
// |
// +----------------------------------------------------------------------+
// | Contributors:
// | https://www.anuko.com/time_tracker/credits.htm
// +----------------------------------------------------------------------+
class I18n {
var $lang = 'en'; // Language for the class.
var $defaultLang = 'en'; // English is the default language.
var $monthNames;
var $weekdayNames;
var $weekdayShortNames;
var $holidays;
var $keys = array(); // These are our localized strings.
// The getKey obtains localized keyword value.
function getKey($kword) {
$value = '';
$pos = strpos($kword, '.'); // Keywords can have separating dots such as in form.login.about.
if (!($pos === false)) {
$words = explode('.', $kword);
$str = '';
foreach ($words as $word) {
$str .= "['".$word."']";
}
eval("\$value = \$this->keys".$str.";");
} else {
$value = $this->keys[$kword];
}
return $value;
}
// TODO: refactoring ongoing down from here...
function getWeekDayName($id) {
$id = intval($id);
return $this->weekdayNames[$id];
}
function load($localName) {
$kw = array();
$filename = strtolower($localName) . '.lang.php';
$inc_filename = RESOURCE_DIR . '/' . $this->defaultLang . '.lang.php';
if (file_exists($inc_filename)) {
include($inc_filename);
$this->monthNames = $i18n_months;
$this->weekdayNames = $i18n_weekdays;
$this->weekdayShortNames = $i18n_weekdays_short;
if (defined('SHOW_HOLIDAYS') && isTrue(SHOW_HOLIDAYS)) {
$this->holidays = $i18n_holidays;
}
foreach ($i18n_key_words as $kword=>$value) {
$pos = strpos($kword, ".");
if (!($pos === false)) {
$p = explode(".", $kword);
$str = "";
foreach ($p as $w) {
$str .= "[\"".$w."\"]";
}
eval("\$this->keys".$str."='".$value."';");
} else {
$this->keys[$kword] = $value;
}
}
}
$inc_filename = RESOURCE_DIR . '/' . $filename;
if (file_exists($inc_filename) && ($localName != $this->defaultLang)) {
require($inc_filename);
$this->lang = $localName;
$this->monthNames = $i18n_months;
$this->weekdayNames = $i18n_weekdays;
$this->weekdayShortNames = $i18n_weekdays_short;
if (defined('SHOW_HOLIDAYS') && isTrue(SHOW_HOLIDAYS)) {
$this->holidays = $i18n_holidays;
}
foreach ($i18n_key_words as $kword=>$value) {
if (!$value) continue;
$pos = strpos($kword, ".");
if (!($pos === false)) {
$p = explode(".", $kword);
$str = "";
foreach ($p as $w) {
$str .= "[\"".$w."\"]";
}
eval("\$this->keys".$str."='".$value."';");
} else {
$this->keys[$kword] = $value;
}
}
return true;
}
}
function hasLang($lang)
{
$filename = RESOURCE_DIR . '/' . strtolower($lang) . '.lang.php';
return file_exists($filename);
}
// getBrowserLanguage() returns a first supported language from browser settings.
function getBrowserLanguage()
{
$acclang = @$_SERVER['HTTP_ACCEPT_LANGUAGE'];
if (empty($acclang)) {
return false;
}
$lang_prefs = explode(',', $acclang);
foreach ($lang_prefs as $lang_pref) {
$lang_pref_parts = explode(';', trim($lang_pref));
$lang = $lang_pref_parts[0];
if ($this->hasLang($lang)) {
return $lang; // Return full language designation (if available), such as pt-BR.
}
if (strlen($lang) <= 2)
continue; // Do not bother determining main language because we already have it.
$lang_parts = explode('-', trim($lang));
$lang_main = $lang_parts[0];
if ($lang_main != $lang && $this->hasLang($lang_main)) {
return $lang_main; // Return main language designation, such as pt.
}
}
return false;
}
// getLangFileList() returns a list of language files.
static function getLangFileList() {
$fileList = array();
$d = @opendir(RESOURCE_DIR);
while (($file = @readdir($d))) {
if (($file != ".") && ($file != "..")) {
if (strpos($file, ".lang.php")) {
$fileList[] = @basename($file);
}
}
}
@closedir($d);
return $fileList;
}
static function getLangFromFilename($filename)
{
return substr($filename, 0, strpos($filename, '.'));
}
}