|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
/** |
|
4
|
|
|
* Language handling class. |
|
5
|
|
|
*/ |
|
6
|
|
|
class Language { |
|
7
|
|
|
private $languages = ["en_US.UTF-8" => "English"]; |
|
8
|
|
|
private $lang; |
|
9
|
|
|
private $loaded = false; |
|
10
|
|
|
|
|
11
|
|
|
/** |
|
12
|
|
|
* Default constructor. |
|
13
|
|
|
* |
|
14
|
|
|
* By default, the Language class only knows about en_GB (English). If you want more languages, you |
|
15
|
|
|
* must call loadLanguages(). |
|
16
|
|
|
*/ |
|
17
|
|
|
public function __construct() {} |
|
18
|
|
|
|
|
19
|
|
|
/** |
|
20
|
|
|
* Loads languages from disk. |
|
21
|
|
|
* |
|
22
|
|
|
* loadLanguages() reads the languages from disk by reading LANGUAGE_DIR and opening all directories |
|
23
|
|
|
* in that directory. Each directory must contain a 'language.txt' file containing: |
|
24
|
|
|
* |
|
25
|
|
|
* <language display name> |
|
26
|
|
|
* <win32 language name> |
|
27
|
|
|
* |
|
28
|
|
|
* For example: |
|
29
|
|
|
* <code> |
|
30
|
|
|
* Nederlands |
|
31
|
|
|
* nld_NLD |
|
32
|
|
|
* </code> |
|
33
|
|
|
* |
|
34
|
|
|
* Also, the directory names must have a name that is: |
|
35
|
|
|
* 1. Available to the server's locale system |
|
36
|
|
|
* 2. In the UTF-8 charset |
|
37
|
|
|
* |
|
38
|
|
|
* For example, nl_NL.UTF-8 |
|
39
|
|
|
*/ |
|
40
|
|
|
public function loadLanguages() { |
|
41
|
|
|
if ($this->loaded) { |
|
42
|
|
|
return; |
|
43
|
|
|
} |
|
44
|
|
|
|
|
45
|
|
|
$languages = explode(";", ENABLED_LANGUAGES); |
|
46
|
|
|
$dh = opendir(LANGUAGE_DIR); |
|
47
|
|
|
while (($entry = readdir($dh)) !== false) { |
|
48
|
|
|
$langcode = str_ireplace(".UTF-8", "", $entry); |
|
49
|
|
|
if (in_array($langcode, $languages) || in_array($entry, $languages)) { |
|
50
|
|
|
if (is_dir(LANGUAGE_DIR . $entry . "/LC_MESSAGES") && is_file(LANGUAGE_DIR . $entry . "/language.txt")) { |
|
51
|
|
|
$fh = fopen(LANGUAGE_DIR . $entry . "/language.txt", "r"); |
|
52
|
|
|
$lang_title = fgets($fh); |
|
53
|
|
|
fclose($fh); |
|
54
|
|
|
$this->languages[$entry] = "{$langcode}: " . trim($lang_title); |
|
55
|
|
|
} |
|
56
|
|
|
} |
|
57
|
|
|
} |
|
58
|
|
|
asort($this->languages, SORT_LOCALE_STRING); |
|
59
|
|
|
$this->loaded = true; |
|
60
|
|
|
} |
|
61
|
|
|
|
|
62
|
|
|
/** |
|
63
|
|
|
* Attempt to set language. |
|
64
|
|
|
* |
|
65
|
|
|
* setLanguage attempts to set the language to the specified language. The language passed |
|
66
|
|
|
* is the name of the directory containing the language. |
|
67
|
|
|
* |
|
68
|
|
|
* For setLanguage() to succeed, the language has to have been loaded via loadLanguages() AND |
|
69
|
|
|
* the gettext system must 'know' the language specified. |
|
70
|
|
|
* |
|
71
|
|
|
* @param string $lang Language code (eg nl_NL.UTF-8) |
|
72
|
|
|
*/ |
|
73
|
|
|
public function setLanguage($lang) { |
|
74
|
|
|
if (isset($GLOBALS['translations'])) { |
|
75
|
|
|
return; |
|
76
|
|
|
} |
|
77
|
|
|
$lang = (empty($lang) || substr($lang, 0, 1) == '.' || $lang == "C") ? LANG : $lang; // default language fix |
|
78
|
|
|
|
|
79
|
|
|
if ($this->is_language($lang)) { |
|
80
|
|
|
$this->lang = $lang; |
|
81
|
|
|
$tmp_translations = $this->getTranslations(); |
|
82
|
|
|
$translations = []; |
|
83
|
|
|
foreach ($tmp_translations as $resources) { |
|
84
|
|
|
$resourcesCount = count($resources); |
|
85
|
|
|
for ($i = 0; $i < $resourcesCount; ++$i) { |
|
86
|
|
|
$msgid = $resources[$i]['msgid']; |
|
87
|
|
|
if (isset($msgid)) { |
|
88
|
|
|
$translations[$msgid] = $resources[$i]['msgstr']; |
|
89
|
|
|
} |
|
90
|
|
|
} |
|
91
|
|
|
} |
|
92
|
|
|
$GLOBALS['translations'] = $translations; |
|
93
|
|
|
} |
|
94
|
|
|
else { |
|
95
|
|
|
error_log(sprintf("Unknown language: '%s'", $lang)); |
|
96
|
|
|
} |
|
97
|
|
|
} |
|
98
|
|
|
|
|
99
|
|
|
public static function getstring($string) { |
|
100
|
|
|
if (isset($GLOBALS['translations'], $GLOBALS['translations'][$string])) { |
|
101
|
|
|
return $GLOBALS['translations'][$string]; |
|
102
|
|
|
} |
|
103
|
|
|
|
|
104
|
|
|
return $string; |
|
105
|
|
|
} |
|
106
|
|
|
|
|
107
|
|
|
/** |
|
108
|
|
|
* Return a list of supported languages. |
|
109
|
|
|
* |
|
110
|
|
|
* Returns an associative array in the format langid -> langname, for example "nl_NL.utf8" -> "Nederlands" |
|
111
|
|
|
* |
|
112
|
|
|
* @return array List of supported languages |
|
113
|
|
|
*/ |
|
114
|
|
|
public function getLanguages() { |
|
115
|
|
|
$this->loadLanguages(); |
|
116
|
|
|
|
|
117
|
|
|
return $this->languages; |
|
118
|
|
|
} |
|
119
|
|
|
|
|
120
|
|
|
/** |
|
121
|
|
|
* Returns the $getLanguages and formats in JSON so it can be parsed |
|
122
|
|
|
* by the javascript. |
|
123
|
|
|
* |
|
124
|
|
|
* @return string The javascript string |
|
125
|
|
|
*/ |
|
126
|
|
|
public function getJSON() { |
|
127
|
|
|
$json = []; |
|
128
|
|
|
$languages = $this->getLanguages(); |
|
129
|
|
|
foreach ($languages as $key => $lang) { |
|
130
|
|
|
$json[] = [ |
|
131
|
|
|
"lang" => $key, |
|
132
|
|
|
"name" => $lang, |
|
133
|
|
|
]; |
|
134
|
|
|
} |
|
135
|
|
|
|
|
136
|
|
|
return json_encode($json); |
|
137
|
|
|
} |
|
138
|
|
|
|
|
139
|
|
|
/** |
|
140
|
|
|
* Returns the ID of the currently selected language. |
|
141
|
|
|
* |
|
142
|
|
|
* @return string ID of selected language |
|
143
|
|
|
*/ |
|
144
|
|
|
public function getSelected() { |
|
145
|
|
|
return $this->lang; |
|
146
|
|
|
} |
|
147
|
|
|
|
|
148
|
|
|
/** |
|
149
|
|
|
* Returns if the specified language is valid or not. |
|
150
|
|
|
* |
|
151
|
|
|
* @param string $lang |
|
152
|
|
|
* |
|
153
|
|
|
* @return bool TRUE if the language is valid |
|
154
|
|
|
*/ |
|
155
|
|
|
public function is_language($lang) { |
|
156
|
|
|
return $lang == "en_GB.UTF-8" || is_dir(LANGUAGE_DIR . "/" . $lang); |
|
157
|
|
|
} |
|
158
|
|
|
|
|
159
|
|
|
/** |
|
160
|
|
|
* Returns the resolved language code, i.e. ending on UTF-8. |
|
161
|
|
|
* Examples: |
|
162
|
|
|
* - en_GB => en.GB.UTF-8 |
|
163
|
|
|
* - en_GB.utf8 => en_GB.UTF-8 |
|
164
|
|
|
* - en_GB.UTF-8 => en_GB.UTF-8 (no changes). |
|
165
|
|
|
* |
|
166
|
|
|
* @param string $lang language code to resolve |
|
167
|
|
|
* |
|
168
|
|
|
* @return string resolved language name (i.e. language code ending on .UTF-8). |
|
169
|
|
|
*/ |
|
170
|
|
|
public static function resolveLanguage($lang) { |
|
171
|
|
|
$normalizedLang = stristr($lang, '.utf-8', true); |
|
172
|
|
|
if (!empty($normalizedLang) && $normalizedLang !== $lang) { |
|
173
|
|
|
// Make sure we will use the format UTF-8 (capitals and hyphen) |
|
174
|
|
|
return $normalizedLang .= '.UTF-8'; |
|
175
|
|
|
} |
|
176
|
|
|
|
|
177
|
|
|
$normalizedLang = stristr($lang, '.utf8', true); |
|
178
|
|
|
if (!empty($normalizedLang) && $normalizedLang !== $lang) { |
|
179
|
|
|
// Make sure we will use the format UTF-8 (capitals and hyphen) |
|
180
|
|
|
return $normalizedLang . '.UTF-8'; |
|
181
|
|
|
} |
|
182
|
|
|
|
|
183
|
|
|
return $lang . '.UTF-8'; |
|
184
|
|
|
} |
|
185
|
|
|
|
|
186
|
|
|
public function getTranslations() { |
|
187
|
|
|
$memid = @shm_attach(0x950412DE, 16 * 1024 * 1024, 0666); |
|
188
|
|
|
if (@shm_has_var($memid, 0)) { |
|
|
|
|
|
|
189
|
|
|
$cache_table = @shm_get_var($memid, 0); |
|
|
|
|
|
|
190
|
|
|
$selected_lang = $this->getSelected(); |
|
191
|
|
|
if (empty($cache_table) || empty($cache_table[$selected_lang])) { |
|
192
|
|
|
@shm_remove_var($memid, 0); |
|
|
|
|
|
|
193
|
|
|
@shm_detach($memid); |
|
|
|
|
|
|
194
|
|
|
|
|
195
|
|
|
return ['grommunio_web' => []]; |
|
196
|
|
|
} |
|
197
|
|
|
$translation_id = $cache_table[$selected_lang]; |
|
198
|
|
|
if (empty($translation_id)) { |
|
199
|
|
|
@shm_detach($memid); |
|
200
|
|
|
|
|
201
|
|
|
return ['grommunio_web' => []]; |
|
202
|
|
|
} |
|
203
|
|
|
$translations = @shm_get_var($memid, $translation_id); |
|
204
|
|
|
@shm_detach($memid); |
|
205
|
|
|
if (empty($translations)) { |
|
206
|
|
|
return ['grommunio_web' => []]; |
|
207
|
|
|
} |
|
208
|
|
|
|
|
209
|
|
|
return $translations; |
|
210
|
|
|
} |
|
211
|
|
|
$handle = opendir(LANGUAGE_DIR); |
|
212
|
|
|
if ($handle == false) { |
|
213
|
|
|
@shm_detach($memid); |
|
214
|
|
|
|
|
215
|
|
|
return ['grommunio_web' => []]; |
|
216
|
|
|
} |
|
217
|
|
|
$last_id = 1; |
|
218
|
|
|
$cache_table = []; |
|
219
|
|
|
while (false !== ($entry = readdir($handle))) { |
|
220
|
|
|
if (strcmp($entry, ".") == 0 || |
|
221
|
|
|
strcmp($entry, "..") == 0) { |
|
222
|
|
|
continue; |
|
223
|
|
|
} |
|
224
|
|
|
$translations = []; |
|
225
|
|
|
$translations['grommunio_web'] = $this->getTranslationsFromFile(LANGUAGE_DIR . $entry . '/LC_MESSAGES/grommunio_web.mo'); |
|
226
|
|
|
if (!$translations['grommunio_web']) { |
|
227
|
|
|
continue; |
|
228
|
|
|
} |
|
229
|
|
|
if (isset($GLOBALS['PluginManager'])) { |
|
230
|
|
|
// What we did above, we are also now going to do for each plugin that has translations. |
|
231
|
|
|
$pluginTranslationPaths = $GLOBALS['PluginManager']->getTranslationFilePaths(); |
|
232
|
|
|
foreach ($pluginTranslationPaths as $pluginname => $path) { |
|
233
|
|
|
$plugin_translations = $this->getTranslationsFromFile($path . '/' . $entry . '/LC_MESSAGES/plugin_' . $pluginname . '.mo'); |
|
234
|
|
|
if ($plugin_translations) { |
|
235
|
|
|
$translations['plugin_' . $pluginname] = $plugin_translations; |
|
236
|
|
|
} |
|
237
|
|
|
} |
|
238
|
|
|
} |
|
239
|
|
|
$cache_table[$entry] = $last_id; |
|
240
|
|
|
@shm_put_var($memid, $last_id, $translations); |
|
|
|
|
|
|
241
|
|
|
if (strcmp($entry, $this->getSelected()) == 0) { |
|
242
|
|
|
$ret_val = $translations; |
|
243
|
|
|
} |
|
244
|
|
|
++$last_id; |
|
245
|
|
|
} |
|
246
|
|
|
closedir($handle); |
|
247
|
|
|
@shm_put_var($memid, 0, $cache_table); |
|
248
|
|
|
@shm_detach($memid); |
|
249
|
|
|
if (empty($ret_val)) { |
|
250
|
|
|
return ['grommunio_web' => []]; |
|
251
|
|
|
} |
|
252
|
|
|
|
|
253
|
|
|
return $ret_val; |
|
254
|
|
|
} |
|
255
|
|
|
|
|
256
|
|
|
/** |
|
257
|
|
|
* getTranslationsFromFile. |
|
258
|
|
|
* |
|
259
|
|
|
* This file reads the translations from the binary .mo file and returns |
|
260
|
|
|
* them in an array containing the original and the translation variant. |
|
261
|
|
|
* The .mo file format is described on the following URL. |
|
262
|
|
|
* http://www.gnu.org/software/gettext/manual/gettext.html#MO-Files |
|
263
|
|
|
* |
|
264
|
|
|
* byte |
|
265
|
|
|
* +------------------------------------------+ |
|
266
|
|
|
* 0 | magic number = 0x950412de | |
|
267
|
|
|
* | | |
|
268
|
|
|
* 4 | file format revision = 0 | |
|
269
|
|
|
* | | |
|
270
|
|
|
* 8 | number of strings | == N |
|
271
|
|
|
* | | |
|
272
|
|
|
* 12 | offset of table with original strings | == O |
|
273
|
|
|
* | | |
|
274
|
|
|
* 16 | offset of table with translation strings | == T |
|
275
|
|
|
* | | |
|
276
|
|
|
* 20 | size of hashing table | == S |
|
277
|
|
|
* | | |
|
278
|
|
|
* 24 | offset of hashing table | == H |
|
279
|
|
|
* | | |
|
280
|
|
|
* . . |
|
281
|
|
|
* . (possibly more entries later) . |
|
282
|
|
|
* . . |
|
283
|
|
|
* | | |
|
284
|
|
|
* O | length & offset 0th string ----------------. |
|
285
|
|
|
* O + 8 | length & offset 1st string ------------------. |
|
286
|
|
|
* ... ... | | |
|
287
|
|
|
* O + ((N-1)*8)| length & offset (N-1)th string | | | |
|
288
|
|
|
* | | | | |
|
289
|
|
|
* T | length & offset 0th translation ---------------. |
|
290
|
|
|
* T + 8 | length & offset 1st translation -----------------. |
|
291
|
|
|
* ... ... | | | | |
|
292
|
|
|
* T + ((N-1)*8)| length & offset (N-1)th translation | | | | | |
|
293
|
|
|
* | | | | | | |
|
294
|
|
|
* H | start hash table | | | | | |
|
295
|
|
|
* ... ... | | | | |
|
296
|
|
|
* H + S * 4 | end hash table | | | | | |
|
297
|
|
|
* | | | | | | |
|
298
|
|
|
* | NUL terminated 0th string <----------------' | | | |
|
299
|
|
|
* | | | | | |
|
300
|
|
|
* | NUL terminated 1st string <------------------' | | |
|
301
|
|
|
* | | | | |
|
302
|
|
|
* ... ... | | |
|
303
|
|
|
* | | | | |
|
304
|
|
|
* | NUL terminated 0th translation <---------------' | |
|
305
|
|
|
* | | | |
|
306
|
|
|
* | NUL terminated 1st translation <-----------------' |
|
307
|
|
|
* | | |
|
308
|
|
|
* ... ... |
|
309
|
|
|
* | | |
|
310
|
|
|
* +------------------------------------------+ |
|
311
|
|
|
* |
|
312
|
|
|
* @param $filename string Name of the .mo file. |
|
313
|
|
|
* |
|
314
|
|
|
* @return array|bool false when file is missing otherwise array with |
|
315
|
|
|
* translations |
|
316
|
|
|
*/ |
|
317
|
|
|
public function getTranslationsFromFile($filename) { |
|
318
|
|
|
if (!is_file($filename)) { |
|
319
|
|
|
return false; |
|
320
|
|
|
} |
|
321
|
|
|
|
|
322
|
|
|
$fp = fopen($filename, 'r'); |
|
323
|
|
|
if (!$fp) { |
|
|
|
|
|
|
324
|
|
|
return false; |
|
325
|
|
|
} |
|
326
|
|
|
|
|
327
|
|
|
// Get number of strings in .mo file |
|
328
|
|
|
fseek($fp, 8, SEEK_SET); |
|
329
|
|
|
$num_of_str = unpack('Lnum', fread($fp, 4)); |
|
330
|
|
|
$num_of_str = $num_of_str['num']; |
|
331
|
|
|
|
|
332
|
|
|
// Get offset to table with original strings |
|
333
|
|
|
fseek($fp, 12, SEEK_SET); |
|
334
|
|
|
$offset_orig_tbl = unpack('Loffset', fread($fp, 4)); |
|
335
|
|
|
$offset_orig_tbl = $offset_orig_tbl['offset']; |
|
336
|
|
|
|
|
337
|
|
|
// Get offset to table with translation strings |
|
338
|
|
|
fseek($fp, 16, SEEK_SET); |
|
339
|
|
|
$offset_transl_tbl = unpack('Loffset', fread($fp, 4)); |
|
340
|
|
|
$offset_transl_tbl = $offset_transl_tbl['offset']; |
|
341
|
|
|
|
|
342
|
|
|
// The following arrays will contain the length and offset of the strings |
|
343
|
|
|
$data_orig_strs = []; |
|
344
|
|
|
$data_transl_strs = []; |
|
345
|
|
|
|
|
346
|
|
|
/* |
|
347
|
|
|
* Get the length and offset to the original strings by using the table |
|
348
|
|
|
* with original strings |
|
349
|
|
|
*/ |
|
350
|
|
|
// Set pointer to start of orig string table |
|
351
|
|
|
fseek($fp, $offset_orig_tbl, SEEK_SET); |
|
352
|
|
|
for ($i = 0; $i < $num_of_str; ++$i) { |
|
353
|
|
|
// Length 4 bytes followed by offset 4 bytes |
|
354
|
|
|
$length = unpack('Llen', fread($fp, 4)); |
|
355
|
|
|
$offset = unpack('Loffset', fread($fp, 4)); |
|
356
|
|
|
$data_orig_strs[$i] = ['length' => $length['len'], 'offset' => $offset['offset']]; |
|
357
|
|
|
} |
|
358
|
|
|
|
|
359
|
|
|
/* |
|
360
|
|
|
* Get the length and offset to the translation strings by using the table |
|
361
|
|
|
* with translation strings |
|
362
|
|
|
*/ |
|
363
|
|
|
// Set pointer to start of translations string table |
|
364
|
|
|
fseek($fp, $offset_transl_tbl, SEEK_SET); |
|
365
|
|
|
for ($i = 0; $i < $num_of_str; ++$i) { |
|
366
|
|
|
// Length 4 bytes followed by offset 4 bytes |
|
367
|
|
|
$length = unpack('Llen', fread($fp, 4)); |
|
368
|
|
|
$offset = unpack('Loffset', fread($fp, 4)); |
|
369
|
|
|
$data_transl_strs[$i] = ['length' => $length['len'], 'offset' => $offset['offset']]; |
|
370
|
|
|
} |
|
371
|
|
|
|
|
372
|
|
|
// This array will contain the actual original and translation strings |
|
373
|
|
|
$translation_data = []; |
|
374
|
|
|
|
|
375
|
|
|
// Get the original strings using the length and offset |
|
376
|
|
|
for ($i = 0, $len = count($data_orig_strs); $i < $len; ++$i) { |
|
377
|
|
|
$translation_data[$i] = []; |
|
378
|
|
|
|
|
379
|
|
|
// Set pointer to the offset of the string |
|
380
|
|
|
fseek($fp, $data_orig_strs[$i]['offset'], SEEK_SET); |
|
381
|
|
|
|
|
382
|
|
|
// Set default values for context and plural forms |
|
383
|
|
|
$translation_data[$i]['msgctxt'] = false; |
|
384
|
|
|
$translation_data[$i]['msgid_plural'] = false; |
|
385
|
|
|
|
|
386
|
|
|
if ($data_orig_strs[$i]['length'] > 0) { // fread does not accept length=0 |
|
387
|
|
|
$length = $data_orig_strs[$i]['length']; |
|
388
|
|
|
$orig_str = unpack('a' . $length . 'str', fread($fp, $length)); |
|
389
|
|
|
$translation_data[$i]['msgid'] = $orig_str['str']; // unpack converts to array :S |
|
390
|
|
|
|
|
391
|
|
|
// Find context in the original string |
|
392
|
|
|
if (strpos($translation_data[$i]['msgid'], "\004") !== false) { |
|
393
|
|
|
$contextSplit = explode("\004", $translation_data[$i]['msgid']); |
|
394
|
|
|
$translation_data[$i]['msgctxt'] = $contextSplit[0]; |
|
395
|
|
|
$translation_data[$i]['msgid'] = $contextSplit[1]; |
|
396
|
|
|
} |
|
397
|
|
|
// Find plural forms in the original string |
|
398
|
|
|
if (strpos($translation_data[$i]['msgid'], "\0") !== false) { |
|
399
|
|
|
$original = explode("\0", $translation_data[$i]['msgid']); |
|
400
|
|
|
$translation_data[$i]['msgid'] = $original[0]; |
|
401
|
|
|
$translation_data[$i]['msgid_plural'] = $original[1]; |
|
402
|
|
|
} |
|
403
|
|
|
} |
|
404
|
|
|
else { |
|
405
|
|
|
$translation_data[$i]['msgid'] = ''; |
|
406
|
|
|
} |
|
407
|
|
|
} |
|
408
|
|
|
|
|
409
|
|
|
// Get the translation strings using the length and offset |
|
410
|
|
|
for ($i = 0, $len = count($data_transl_strs); $i < $len; ++$i) { |
|
411
|
|
|
// Set pointer to the offset of the string |
|
412
|
|
|
fseek($fp, $data_transl_strs[$i]['offset'], SEEK_SET); |
|
413
|
|
|
if ($data_transl_strs[$i]['length'] > 0) { // fread does not accept length=0 |
|
414
|
|
|
$length = $data_transl_strs[$i]['length']; |
|
415
|
|
|
$trans_str = unpack('a' . $length . 'str', fread($fp, $length)); |
|
416
|
|
|
$translation_data[$i]['msgstr'] = $trans_str['str']; // unpack converts to array :S |
|
417
|
|
|
|
|
418
|
|
|
// If there are plural forms in the source string, |
|
419
|
|
|
// then the translated string must contain plural |
|
420
|
|
|
// forms as well. We cannot depend on a \0 being |
|
421
|
|
|
// present at all times, because languages that |
|
422
|
|
|
// have only one plural form won't have this |
|
423
|
|
|
// (e.g. Japanese) |
|
424
|
|
|
if ($translation_data[$i]['msgid_plural'] !== false) { |
|
425
|
|
|
$translation_data[$i]['msgstr'] = explode("\0", $translation_data[$i]['msgstr']); |
|
426
|
|
|
} |
|
427
|
|
|
} |
|
428
|
|
|
else { |
|
429
|
|
|
$translation_data[$i]['msgstr'] = ''; |
|
430
|
|
|
} |
|
431
|
|
|
} |
|
432
|
|
|
|
|
433
|
|
|
return $translation_data; |
|
434
|
|
|
} |
|
435
|
|
|
} |
|
436
|
|
|
|