Handle messages from the user's email_address as Sent messages
[squirrelmail.git] / functions / i18n.php
1 <?php
2
3 /**
4 * i18n.php
5 *
6 * Copyright (c) 1999-2003 The SquirrelMail Project Team
7 * Licensed under the GNU GPL. For full terms see the file COPYING.
8 *
9 * This file contains variuos functions that are needed to do
10 * internationalization of SquirrelMail.
11 *
12 * Internally the output character set is used. Other characters are
13 * encoded using Unicode entities according to HTML 4.0.
14 *
15 * $Id$
16 */
17
18 require_once(SM_PATH . 'functions/global.php');
19
20 /* Decodes a string to the internal encoding from the given charset */
21 function charset_decode ($charset, $string) {
22 global $languages, $squirrelmail_language, $default_charset;
23
24 if (isset($languages[$squirrelmail_language]['XTRA_CODE']) &&
25 function_exists($languages[$squirrelmail_language]['XTRA_CODE'])) {
26 $string = $languages[$squirrelmail_language]['XTRA_CODE']('decode', $string);
27 }
28
29 $charset = strtolower($charset);
30
31 set_my_charset();
32
33 // Variables that allow to use functions without function_exist() calls
34 $use_php_recode=false;
35 $use_php_iconv=false;
36
37 // Don't do conversion if charset is the same.
38 if ( $charset == strtolower($default_charset) )
39 return htmlspecialchars($string);
40
41 // catch iso-8859-8-i thing
42 if ( $charset == "iso-8859-8-i" )
43 $charset = "iso-8859-8";
44
45 /*
46 * Recode converts html special characters automatically if you use
47 * 'charset..html' decoding. There is no documented way to put -d option
48 * into php recode function call.
49 */
50 if ( $use_php_recode ) {
51 if ( $default_charset == "utf-8" ) {
52 // other charsets can be converted to utf-8 without loss.
53 // and output string is smaller
54 $string = recode_string($charset . "..utf-8",$string);
55 return htmlspecialchars($string);
56 } else {
57 $string = recode_string($charset . "..html",$string);
58 // recode does not convert single quote, htmlspecialchars does.
59 $string = str_replace("'", '&#039;', $string);
60 return $string;
61 }
62 }
63
64 // iconv functions does not have html target and can be used only with utf-8
65 if ( $use_php_iconv && $default_charset=='utf-8') {
66 $string = iconv($charset,$default_charset,$string);
67 return htmlspecialchars($string);
68 }
69
70 // If we don't use recode and iconv, we'll do it old way.
71
72 /* All HTML special characters are 7 bit and can be replaced first */
73
74 $string = htmlspecialchars ($string);
75
76 /* controls cpu and memory intensive decoding cycles */
77 $agresive_decoding = false;
78
79 if (ereg('iso-8859-([[:digit:]]+)', $charset, $res)) {
80 if ($res[1] == '1') {
81 include_once(SM_PATH . 'functions/decode/iso8859-1.php');
82 $ret = charset_decode_iso8859_1 ($string);
83 } else if ($res[1] == '2') {
84 include_once(SM_PATH . 'functions/decode/iso8859-2.php');
85 $ret = charset_decode_iso8859_2 ($string);
86 } else if ($res[1] == '3') {
87 include_once(SM_PATH . 'functions/decode/iso8859-3.php');
88 $ret = charset_decode_iso8859_3 ($string);
89 } else if ($res[1] == '4') {
90 include_once(SM_PATH . 'functions/decode/iso8859-4.php');
91 $ret = charset_decode_iso8859_4 ($string);
92 } else if ($res[1] == '5') {
93 include_once(SM_PATH . 'functions/decode/iso8859-5.php');
94 $ret = charset_decode_iso8859_5 ($string);
95 } else if ($res[1] == '6') {
96 include_once(SM_PATH . 'functions/decode/iso8859-6.php');
97 $ret = charset_decode_iso8859_6 ($string);
98 } else if ($res[1] == '7') {
99 include_once(SM_PATH . 'functions/decode/iso8859-7.php');
100 $ret = charset_decode_iso8859_7 ($string);
101 } else if ($res[1] == '8') {
102 include_once(SM_PATH . 'functions/decode/iso8859-8.php');
103 $ret = charset_decode_iso8859_8 ($string);
104 } else if ($res[1] == '9') {
105 include_once(SM_PATH . 'functions/decode/iso8859-9.php');
106 $ret = charset_decode_iso8859_9 ($string);
107 } else if ($res[1] == '10') {
108 include_once(SM_PATH . 'functions/decode/iso8859-10.php');
109 $ret = charset_decode_iso8859_10 ($string);
110 } else if ($res[1] == '11') {
111 include_once(SM_PATH . 'functions/decode/iso8859-11.php');
112 $ret = charset_decode_iso8859_11 ($string);
113 } else if ($res[1] == '13') {
114 include_once(SM_PATH . 'functions/decode/iso8859-13.php');
115 $ret = charset_decode_iso8859_13 ($string);
116 } else if ($res[1] == '14') {
117 include_once(SM_PATH . 'functions/decode/iso8859-14.php');
118 $ret = charset_decode_iso8859_14 ($string);
119 } else if ($res[1] == '15') {
120 include_once(SM_PATH . 'functions/decode/iso8859-15.php');
121 $ret = charset_decode_iso8859_15 ($string);
122 } else if ($res[1] == '16') {
123 include_once(SM_PATH . 'functions/decode/iso8859-16.php');
124 $ret = charset_decode_iso8859_16 ($string);
125 } else {
126 $ret = charset_decode_iso_8859_default ($string);
127 }
128 } else if ($charset == 'ns_4551-1') {
129 $ret = charset_decode_ns_4551_1 ($string);
130 } else if ($charset == 'koi8-r') {
131 include_once(SM_PATH . 'functions/decode/koi8-r.php');
132 $ret = charset_decode_koi8r ($string);
133 } else if ($charset == 'koi8-u') {
134 include_once(SM_PATH . 'functions/decode/koi8-u.php');
135 $ret = charset_decode_koi8u ($string);
136 } else if ($charset == 'windows-1250') {
137 include_once(SM_PATH . 'functions/decode/cp1250.php');
138 $ret = charset_decode_cp1250 ($string);
139 } else if ($charset == 'windows-1251') {
140 include_once(SM_PATH . 'functions/decode/cp1251.php');
141 $ret = charset_decode_cp1251 ($string);
142 } else if ($charset == 'windows-1252') {
143 include_once(SM_PATH . 'functions/decode/cp1252.php');
144 $ret = charset_decode_cp1252 ($string);
145 } else if ($charset == 'windows-1253') {
146 include_once(SM_PATH . 'functions/decode/cp1253.php');
147 $ret = charset_decode_cp1253 ($string);
148 } else if ($charset == 'windows-1254') {
149 include_once(SM_PATH . 'functions/decode/cp1254.php');
150 $ret = charset_decode_cp1254 ($string);
151 } else if ($charset == 'windows-1255') {
152 include_once(SM_PATH . 'functions/decode/cp1255.php');
153 $ret = charset_decode_cp1255 ($string);
154 } else if ($charset == 'windows-1256') {
155 include_once(SM_PATH . 'functions/decode/cp1256.php');
156 $ret = charset_decode_cp1256 ($string);
157 } else if ($charset == 'windows-1257') {
158 include_once(SM_PATH . 'functions/decode/cp1257.php');
159 $ret = charset_decode_cp1257 ($string);
160 } else if ($charset == 'windows-1258') {
161 include_once(SM_PATH . 'functions/decode/cp1258.php');
162 $ret = charset_decode_cp1258 ($string);
163 } else if ($charset == 'tis-620') {
164 include_once(SM_PATH . 'functions/decode/tis620.php');
165 $ret = charset_decode_tis620 ($string);
166 } else if ($charset == 'big5' and $agresive_decoding ) {
167 include_once(SM_PATH . 'functions/decode/big5.php');
168 $ret = charset_decode_big5 ($string);
169 } else if ($charset == 'gb2312' and $agresive_decoding ) {
170 include_once(SM_PATH . 'functions/decode/gb2312.php');
171 $ret = charset_decode_gb2312 ($string);
172 } else if ($charset == 'utf-8') {
173 include_once(SM_PATH . 'functions/decode/utf-8.php');
174 $ret = charset_decode_utf8 ($string);
175 } else {
176 $ret = $string;
177 }
178 return( $ret );
179 }
180
181
182 /* Remove all 8 bit characters from all other ISO-8859 character sets */
183 function charset_decode_iso_8859_default ($string) {
184 return (strtr($string, "\240\241\242\243\244\245\246\247".
185 "\250\251\252\253\254\255\256\257".
186 "\260\261\262\263\264\265\266\267".
187 "\270\271\272\273\274\275\276\277".
188 "\300\301\302\303\304\305\306\307".
189 "\310\311\312\313\314\315\316\317".
190 "\320\321\322\323\324\325\326\327".
191 "\330\331\332\333\334\335\336\337".
192 "\340\341\342\343\344\345\346\347".
193 "\350\351\352\353\354\355\356\357".
194 "\360\361\362\363\364\365\366\367".
195 "\370\371\372\373\374\375\376\377",
196 "????????????????????????????????????????".
197 "????????????????????????????????????????".
198 "????????????????????????????????????????".
199 "????????"));
200
201 }
202
203 /*
204 * This is the same as ISO-646-NO and is used by some
205 * Microsoft programs when sending Norwegian characters
206 */
207 function charset_decode_ns_4551_1 ($string) {
208 /*
209 * These characters are:
210 * Latin capital letter AE
211 * Latin capital letter O with stroke
212 * Latin capital letter A with ring above
213 * and the same as small letters
214 */
215 return strtr ($string, "[\\]{|}", "ÆØÅæøå");
216 }
217
218
219 /*
220 * Set up the language to be output
221 * if $do_search is true, then scan the browser information
222 * for a possible language that we know
223 */
224 function set_up_language($sm_language, $do_search = false, $default = false) {
225
226 static $SetupAlready = 0;
227 global $use_gettext, $languages,
228 $squirrelmail_language, $squirrelmail_default_language,
229 $sm_notAlias;
230
231 if ($SetupAlready) {
232 return;
233 }
234
235 $SetupAlready = TRUE;
236 sqgetGlobalVar('HTTP_ACCEPT_LANGUAGE', $accept_lang, SQ_SERVER);
237
238 if ($do_search && ! $sm_language && isset($accept_lang)) {
239 $sm_language = substr($accept_lang, 0, 2);
240 }
241
242 if ((!$sm_language||$default) && isset($squirrelmail_default_language)) {
243 $squirrelmail_language = $squirrelmail_default_language;
244 $sm_language = $squirrelmail_default_language;
245 }
246 $sm_notAlias = $sm_language;
247
248 // Catching removed translation
249 // System reverts to English translation if user prefs contain translation
250 // that is not available in $languages array (admin removed directory
251 // with that translation)
252 if (!isset($languages[$sm_notAlias])) {
253 $sm_notAlias="en_US";
254 }
255
256 while (isset($languages[$sm_notAlias]['ALIAS'])) {
257 $sm_notAlias = $languages[$sm_notAlias]['ALIAS'];
258 }
259
260 if ( isset($sm_language) &&
261 $use_gettext &&
262 $sm_language != '' &&
263 isset($languages[$sm_notAlias]['CHARSET']) ) {
264 bindtextdomain( 'squirrelmail', SM_PATH . 'locale/' );
265 textdomain( 'squirrelmail' );
266 if (function_exists('bind_textdomain_codeset')) {
267 bind_textdomain_codeset ("squirrelmail", $languages[$sm_notAlias]['CHARSET'] );
268 }
269 if (isset($languages[$sm_notAlias]['LOCALE'])){
270 $longlocale=$languages[$sm_notAlias]['LOCALE'];
271 } else {
272 $longlocale=$sm_notAlias;
273 }
274 if ( !ini_get('safe_mode') &&
275 getenv( 'LC_ALL' ) != $longlocale ) {
276 putenv( "LC_ALL=$longlocale" );
277 putenv( "LANG=$longlocale" );
278 putenv( "LANGUAGE=$longlocale" );
279 }
280 setlocale(LC_ALL, $longlocale);
281 $squirrelmail_language = $sm_notAlias;
282 if ($squirrelmail_language == 'ja_JP' && function_exists('mb_detect_encoding') ) {
283 header ('Content-Type: text/html; charset=EUC-JP');
284 if (!function_exists('mb_internal_encoding')) {
285 echo _("You need to have php4 installed with the multibyte string function enabled (using configure option --enable-mbstring).");
286 }
287 if (function_exists('mb_language')) {
288 mb_language('Japanese');
289 }
290 mb_internal_encoding('EUC-JP');
291 mb_http_output('pass');
292 } else {
293 header( 'Content-Type: text/html; charset=' . $languages[$sm_notAlias]['CHARSET'] );
294 }
295 }
296 }
297
298 function set_my_charset(){
299
300 /*
301 * There can be a $default_charset setting in the
302 * config.php file, but the user may have a different language
303 * selected for a user interface. This function checks the
304 * language selected by the user and tags the outgoing messages
305 * with the appropriate charset corresponding to the language
306 * selection. This is "more right" (tm), than just stamping the
307 * message blindly with the system-wide $default_charset.
308 */
309 global $data_dir, $username, $default_charset, $languages, $squirrelmail_default_language;
310
311 $my_language = getPref($data_dir, $username, 'language');
312 if (!$my_language) {
313 $my_language = $squirrelmail_default_language ;
314 }
315 // Catch removed translation
316 if (!isset($languages[$my_language])) {
317 $my_language="en_US";
318 }
319 while (isset($languages[$my_language]['ALIAS'])) {
320 $my_language = $languages[$my_language]['ALIAS'];
321 }
322 $my_charset = $languages[$my_language]['CHARSET'];
323 if ($my_charset) {
324 $default_charset = $my_charset;
325 }
326 }
327
328 /* ------------------------------ main --------------------------- */
329
330 global $squirrelmail_language, $languages, $use_gettext;
331
332 if (! isset($squirrelmail_language)) {
333 $squirrelmail_language = '';
334 }
335
336 /* This array specifies the available languages. */
337
338 if ( file_exists( SM_PATH . 'locale/ca_ES') ) {
339 // The glibc locale is ca_ES.
340 $languages['ca_ES']['NAME'] = 'Catalan';
341 $languages['ca_ES']['CHARSET'] = 'iso-8859-1';
342 $languages['ca']['ALIAS'] = 'ca_ES';
343 }
344
345 if ( file_exists( SM_PATH . 'locale/cs_CZ') ) {
346 $languages['cs_CZ']['NAME'] = 'Czech';
347 $languages['cs_CZ']['CHARSET'] = 'iso-8859-2';
348 $languages['cs']['ALIAS'] = 'cs_CZ';
349 }
350
351 if ( file_exists( SM_PATH . 'locale/da_DK') ) {
352 // Danish locale is da_DK.
353 $languages['da_DK']['NAME'] = 'Danish';
354 $languages['da_DK']['CHARSET'] = 'iso-8859-1';
355 $languages['da']['ALIAS'] = 'da_DK';
356 }
357
358 if ( file_exists( SM_PATH . 'locale/de_DE') ) {
359 $languages['de_DE']['NAME'] = 'Deutsch';
360 $languages['de_DE']['CHARSET'] = 'iso-8859-1';
361 $languages['de']['ALIAS'] = 'de_DE';
362 }
363
364 // There is no en_EN! There is en_US, en_BR, en_AU, and so forth,
365 // but who cares about !US, right? Right? :)
366
367 if ( file_exists( SM_PATH . 'locale/el_GR') ) {
368 $languages['el_GR']['NAME'] = 'Greek';
369 $languages['el_GR']['CHARSET'] = 'iso-8859-7';
370 $languages['el']['ALIAS'] = 'el_GR';
371 }
372
373 $languages['en_US']['NAME'] = 'English';
374 $languages['en_US']['CHARSET'] = 'iso-8859-1';
375 $languages['en']['ALIAS'] = 'en_US';
376
377 if ( file_exists( SM_PATH . 'locale/es_ES') ) {
378 $languages['es_ES']['NAME'] = 'Spanish';
379 $languages['es_ES']['CHARSET'] = 'iso-8859-1';
380 $languages['es']['ALIAS'] = 'es_ES';
381 }
382 if ( file_exists( SM_PATH . 'locale/et_EE') ) {
383 $languages['et_EE']['NAME'] = 'Estonian';
384 $languages['et_EE']['CHARSET'] = 'iso-8859-15';
385 $languages['et']['ALIAS'] = 'et_EE';
386 }
387 if ( file_exists( SM_PATH . 'locale/fo_FO') ) {
388 $languages['fo_FO']['NAME'] = 'Faroese';
389 $languages['fo_FO']['CHARSET'] = 'iso-8859-1';
390 $languages['fo']['ALIAS'] = 'fo_FO';
391 }
392 if ( file_exists( SM_PATH . 'locale/fi_FI') ) {
393 $languages['fi_FI']['NAME'] = 'Finnish';
394 $languages['fi_FI']['CHARSET'] = 'iso-8859-1';
395 $languages['fi']['ALIAS'] = 'fi_FI';
396 }
397 if ( file_exists( SM_PATH . 'locale/fr_FR') ) {
398 $languages['fr_FR']['NAME'] = 'French';
399 $languages['fr_FR']['CHARSET'] = 'iso-8859-1';
400 $languages['fr']['ALIAS'] = 'fr_FR';
401 }
402 if ( file_exists( SM_PATH . 'locale/hr_HR') ) {
403 $languages['hr_HR']['NAME'] = 'Croatian';
404 $languages['hr_HR']['CHARSET'] = 'iso-8859-2';
405 $languages['hr']['ALIAS'] = 'hr_HR';
406 }
407 if ( file_exists( SM_PATH . 'locale/hu_HU') ) {
408 $languages['hu_HU']['NAME'] = 'Hungarian';
409 $languages['hu_HU']['CHARSET'] = 'iso-8859-2';
410 $languages['hu']['ALIAS'] = 'hu_HU';
411 }
412 if ( file_exists( SM_PATH . 'locale/id_ID') ) {
413 $languages['id_ID']['NAME'] = 'Bahasa Indonesia';
414 $languages['id_ID']['CHARSET'] = 'iso-8859-1';
415 $languages['id']['ALIAS'] = 'id_ID';
416 }
417 if ( file_exists( SM_PATH . 'locale/is_IS') ) {
418 $languages['is_IS']['NAME'] = 'Icelandic';
419 $languages['is_IS']['CHARSET'] = 'iso-8859-1';
420 $languages['is']['ALIAS'] = 'is_IS';
421 }
422 if ( file_exists( SM_PATH . 'locale/it_IT') ) {
423 $languages['it_IT']['NAME'] = 'Italian';
424 $languages['it_IT']['CHARSET'] = 'iso-8859-1';
425 $languages['it']['ALIAS'] = 'it_IT';
426 }
427 if ( file_exists( SM_PATH . 'locale/ja_JP') ) {
428 $languages['ja_JP']['NAME'] = 'Japanese';
429 $languages['ja_JP']['CHARSET'] = 'iso-2022-jp';
430 $languages['ja_JP']['XTRA_CODE'] = 'japanese_charset_xtra';
431 $languages['ja']['ALIAS'] = 'ja_JP';
432 }
433 if ( file_exists( SM_PATH . 'locale/ko_KR') ) {
434 $languages['ko_KR']['NAME'] = 'Korean';
435 $languages['ko_KR']['CHARSET'] = 'euc-KR';
436 $languages['ko_KR']['XTRA_CODE'] = 'korean_charset_xtra';
437 $languages['ko']['ALIAS'] = 'ko_KR';
438 }
439 if ( file_exists( SM_PATH . 'locale/nl_NL') ) {
440 $languages['nl_NL']['NAME'] = 'Dutch';
441 $languages['nl_NL']['CHARSET'] = 'iso-8859-1';
442 $languages['nl']['ALIAS'] = 'nl_NL';
443 }
444 if ( file_exists( SM_PATH . 'locale/no_NO') ) {
445 $languages['no_NO']['NAME'] = 'Norwegian (Bokm&aring;l)';
446 $languages['no_NO']['CHARSET'] = 'iso-8859-1';
447 $languages['no']['ALIAS'] = 'no_NO';
448 }
449 if ( file_exists( SM_PATH . 'locale/nn_NO') ) {
450 $languages['nn_NO']['NAME'] = 'Norwegian (Nynorsk)';
451 $languages['nn_NO']['CHARSET'] = 'iso-8859-1';
452 }
453 if ( file_exists( SM_PATH . 'locale/pl_PL') ) {
454 $languages['pl_PL']['NAME'] = 'Polish';
455 $languages['pl_PL']['CHARSET'] = 'iso-8859-2';
456 $languages['pl']['ALIAS'] = 'pl_PL';
457 }
458 if ( file_exists( SM_PATH . 'locale/pt_PT') ) {
459 $languages['pt_PT']['NAME'] = 'Portuguese (Portugal)';
460 $languages['pt_PT']['CHARSET'] = 'iso-8859-1';
461 $languages['pt']['ALIAS'] = 'pt_PT';
462 }
463 if ( file_exists( SM_PATH . 'locale/pt_BR') ) {
464 $languages['pt_BR']['NAME'] = 'Portuguese (Brazil)';
465 $languages['pt_BR']['CHARSET'] = 'iso-8859-1';
466 }
467 if ( file_exists( SM_PATH . 'locale/ru_RU') ) {
468 $languages['ru_RU']['NAME'] = 'Russian';
469 $languages['ru_RU']['CHARSET'] = 'utf-8';
470 $languages['ru_RU']['LOCALE'] = 'ru_RU.UTF-8';
471 $languages['ru']['ALIAS'] = 'ru_RU';
472 }
473 if ( file_exists( SM_PATH . 'locale/sr_YU') ) {
474 $languages['sr_YU']['NAME'] = 'Serbian';
475 $languages['sr_YU']['CHARSET'] = 'iso-8859-2';
476 $languages['sr']['ALIAS'] = 'sr_YU';
477 }
478 if ( file_exists( SM_PATH . 'locale/sv_SE') ) {
479 $languages['sv_SE']['NAME'] = 'Swedish';
480 $languages['sv_SE']['CHARSET'] = 'iso-8859-1';
481 $languages['sv']['ALIAS'] = 'sv_SE';
482 }
483 if ( file_exists( SM_PATH . 'locale/tr_TR') ) {
484 $languages['tr_TR']['NAME'] = 'Turkish';
485 $languages['tr_TR']['CHARSET'] = 'iso-8859-9';
486 $languages['tr']['ALIAS'] = 'tr_TR';
487 }
488 if ( file_exists( SM_PATH . 'locale/zh_TW') ) {
489 $languages['zh_TW']['NAME'] = 'Chinese Trad';
490 $languages['zh_TW']['CHARSET'] = 'big5';
491 $languages['tw']['ALIAS'] = 'zh_TW';
492 }
493 if ( file_exists( SM_PATH . 'locale/zh_CN') ) {
494 $languages['zh_CN']['NAME'] = 'Chinese Simp';
495 $languages['zh_CN']['CHARSET'] = 'gb2312';
496 $languages['cn']['ALIAS'] = 'zh_CN';
497 }
498 if ( file_exists( SM_PATH . 'locale/sk_SK') ) {
499 $languages['sk_SK']['NAME'] = 'Slovak';
500 $languages['sk_SK']['CHARSET'] = 'iso-8859-2';
501 $languages['sk']['ALIAS'] = 'sk_SK';
502 }
503 if ( file_exists( SM_PATH . 'locale/ro_RO') ) {
504 $languages['ro_RO']['NAME'] = 'Romanian';
505 $languages['ro_RO']['CHARSET'] = 'iso-8859-2';
506 $languages['ro']['ALIAS'] = 'ro_RO';
507 }
508 if ( file_exists( SM_PATH . 'locale/th_TH') ) {
509 $languages['th_TH']['NAME'] = 'Thai';
510 $languages['th_TH']['CHARSET'] = 'tis-620';
511 $languages['th']['ALIAS'] = 'th_TH';
512 }
513 if ( file_exists( SM_PATH . 'locale/lt_LT') ) {
514 $languages['lt_LT']['NAME'] = 'Lithuanian';
515 $languages['lt_LT']['CHARSET'] = 'iso-8859-4';
516 $languages['lt_LT']['LOCALE'] = 'lt_LT.ISO-8859-4';
517 $languages['lt']['ALIAS'] = 'lt_LT';
518 }
519 if ( file_exists( SM_PATH . 'locale/sl_SI') ) {
520 $languages['sl_SI']['NAME'] = 'Slovenian';
521 $languages['sl_SI']['CHARSET'] = 'iso-8859-2';
522 $languages['sl']['ALIAS'] = 'sl_SI';
523 }
524 if ( file_exists( SM_PATH . 'locale/bg_BG') ) {
525 $languages['bg_BG']['NAME'] = 'Bulgarian';
526 $languages['bg_BG']['CHARSET'] = 'windows-1251';
527 $languages['bg']['ALIAS'] = 'bg_BG';
528 }
529 if ( file_exists( SM_PATH . 'locale/uk_UA') ) {
530 $languages['uk_UA']['NAME'] = 'Ukrainian';
531 $languages['uk_UA']['CHARSET'] = 'koi8-u';
532 $languages['uk']['ALIAS'] = 'uk_UA';
533 }
534 if ( file_exists( SM_PATH . 'locale/cy_GB') ) {
535 $languages['cy_GB']['NAME'] = 'Welsh';
536 $languages['cy_GB']['CHARSET'] = 'iso-8859-1';
537 $languages['cy']['ALIAS'] = 'cy_GB';
538 }
539 if ( file_exists( SM_PATH . 'locale/vi_VN') ) {
540 $languages['vi_VN']['NAME'] = 'Vietnamese';
541 $languages['vi_VN']['CHARSET'] = 'utf-8';
542 $languages['vi']['ALIAS'] = 'vi_VN';
543 }
544 // Right to left languages
545 if ( file_exists( SM_PATH . 'locale/ar') ) {
546 $languages['ar']['NAME'] = 'Arabic';
547 $languages['ar']['CHARSET'] = 'windows-1256';
548 $languages['ar']['DIR'] = 'rtl';
549 }
550 if ( file_exists( SM_PATH . 'locale/he_IL') ) {
551 $languages['he_IL']['NAME'] = 'Hebrew';
552 $languages['he_IL']['CHARSET'] = 'windows-1255';
553 $languages['he_IL']['DIR'] = 'rtl';
554 $languages['he']['ALIAS'] = 'he_IL';
555 }
556
557 /* Detect whether gettext is installed. */
558 $gettext_flags = 0;
559 if (function_exists('_')) {
560 $gettext_flags += 1;
561 }
562 if (function_exists('bindtextdomain')) {
563 $gettext_flags += 2;
564 }
565 if (function_exists('textdomain')) {
566 $gettext_flags += 4;
567 }
568
569 /* If gettext is fully loaded, cool */
570 if ($gettext_flags == 7) {
571 $use_gettext = true;
572 }
573 /* If we can fake gettext, try that */
574 elseif ($gettext_flags == 0) {
575 $use_gettext = true;
576 include_once(SM_PATH . 'functions/gettext.php');
577 } else {
578 /* Uh-ho. A weird install */
579 if (! $gettext_flags & 1) {
580 function _($str) {
581 return $str;
582 }
583 }
584 if (! $gettext_flags & 2) {
585 function bindtextdomain() {
586 return;
587 }
588 }
589 if (! $gettext_flags & 4) {
590 function textdomain() {
591 return;
592 }
593 }
594 }
595
596
597 /*
598 * Japanese charset extra function
599 *
600 */
601 function japanese_charset_xtra() {
602 $ret = func_get_arg(1); /* default return value */
603 if (function_exists('mb_detect_encoding')) {
604 switch (func_get_arg(0)) { /* action */
605 case 'decode':
606 $detect_encoding = @mb_detect_encoding($ret);
607 if ($detect_encoding == 'JIS' ||
608 $detect_encoding == 'EUC-JP' ||
609 $detect_encoding == 'SJIS' ||
610 $detect_encoding == 'UTF-8') {
611
612 $ret = mb_convert_kana(mb_convert_encoding($ret, 'EUC-JP', 'AUTO'), "KV");
613 }
614 break;
615 case 'encode':
616 $detect_encoding = @mb_detect_encoding($ret);
617 if ($detect_encoding == 'JIS' ||
618 $detect_encoding == 'EUC-JP' ||
619 $detect_encoding == 'SJIS' ||
620 $detect_encoding == 'UTF-8') {
621
622 $ret = mb_convert_encoding(mb_convert_kana($ret, "KV"), 'JIS', 'AUTO');
623 }
624 break;
625 case 'strimwidth':
626 $width = func_get_arg(2);
627 $ret = mb_strimwidth($ret, 0, $width, '...');
628 break;
629 case 'encodeheader':
630 $result = '';
631 if (strlen($ret) > 0) {
632 $tmpstr = mb_substr($ret, 0, 1);
633 $prevcsize = strlen($tmpstr);
634 for ($i = 1; $i < mb_strlen($ret); $i++) {
635 $tmp = mb_substr($ret, $i, 1);
636 if (strlen($tmp) == $prevcsize) {
637 $tmpstr .= $tmp;
638 } else {
639 if ($prevcsize == 1) {
640 $result .= $tmpstr;
641 } else {
642 $result .= str_replace(' ', '',
643 mb_encode_mimeheader($tmpstr,'iso-2022-jp','B',''));
644 }
645 $tmpstr = $tmp;
646 $prevcsize = strlen($tmp);
647 }
648 }
649 if (strlen($tmpstr)) {
650 if (strlen(mb_substr($tmpstr, 0, 1)) == 1)
651 $result .= $tmpstr;
652 else
653 $result .= str_replace(' ', '',
654 mb_encode_mimeheader($tmpstr,'iso-2022-jp','B',''));
655 }
656 }
657 $ret = $result;
658 break;
659 case 'decodeheader':
660 $ret = str_replace("\t", "", $ret);
661 if (eregi('=\\?([^?]+)\\?(q|b)\\?([^?]+)\\?=', $ret))
662 $ret = @mb_decode_mimeheader($ret);
663 $ret = @mb_convert_encoding($ret, 'EUC-JP', 'AUTO');
664 break;
665 case 'downloadfilename':
666 $useragent = func_get_arg(2);
667 if (strstr($useragent, 'Windows') !== false ||
668 strstr($useragent, 'Mac_') !== false) {
669 $ret = mb_convert_encoding($ret, 'SJIS', 'AUTO');
670 } else {
671 $ret = mb_convert_encoding($ret, 'EUC-JP', 'AUTO');
672 }
673 break;
674 case 'wordwrap':
675 $no_begin = "\x21\x25\x29\x2c\x2e\x3a\x3b\x3f\x5d\x7d\xa1\xf1\xa1\xeb\xa1" .
676 "\xc7\xa1\xc9\xa2\xf3\xa1\xec\xa1\xed\xa1\xee\xa1\xa2\xa1\xa3\xa1\xb9" .
677 "\xa1\xd3\xa1\xd5\xa1\xd7\xa1\xd9\xa1\xdb\xa1\xcd\xa4\xa1\xa4\xa3\xa4" .
678 "\xa5\xa4\xa7\xa4\xa9\xa4\xc3\xa4\xe3\xa4\xe5\xa4\xe7\xa4\xee\xa1\xab" .
679 "\xa1\xac\xa1\xb5\xa1\xb6\xa5\xa1\xa5\xa3\xa5\xa5\xa5\xa7\xa5\xa9\xa5" .
680 "\xc3\xa5\xe3\xa5\xe5\xa5\xe7\xa5\xee\xa5\xf5\xa5\xf6\xa1\xa6\xa1\xbc" .
681 "\xa1\xb3\xa1\xb4\xa1\xaa\xa1\xf3\xa1\xcb\xa1\xa4\xa1\xa5\xa1\xa7\xa1" .
682 "\xa8\xa1\xa9\xa1\xcf\xa1\xd1";
683 $no_end = "\x5c\x24\x28\x5b\x7b\xa1\xf2\x5c\xa1\xc6\xa1\xc8\xa1\xd2\xa1" .
684 "\xd4\xa1\xd6\xa1\xd8\xa1\xda\xa1\xcc\xa1\xf0\xa1\xca\xa1\xce\xa1\xd0\xa1\xef";
685 $wrap = func_get_arg(2);
686
687 if (strlen($ret) >= $wrap &&
688 substr($ret, 0, 1) != '>' &&
689 strpos($ret, 'http://') === FALSE &&
690 strpos($ret, 'https://') === FALSE &&
691 strpos($ret, 'ftp://') === FALSE) {
692
693 $ret = mb_convert_kana($ret, "KV");
694
695 $line_new = '';
696 $ptr = 0;
697
698 while ($ptr < strlen($ret) - 1) {
699 $l = mb_strcut($ret, $ptr, $wrap);
700 $ptr += strlen($l);
701 $tmp = $l;
702
703 $l = mb_strcut($ret, $ptr, 2);
704 while (strlen($l) != 0 && mb_strpos($no_begin, $l) !== FALSE ) {
705 $tmp .= $l;
706 $ptr += strlen($l);
707 $l = mb_strcut($ret, $ptr, 1);
708 }
709 $line_new .= $tmp;
710 if ($ptr < strlen($ret) - 1)
711 $line_new .= "\n";
712 }
713 $ret = $line_new;
714 }
715 break;
716 case 'utf7-imap_encode':
717 $ret = mb_convert_encoding($ret, 'UTF7-IMAP', 'EUC-JP');
718 break;
719 case 'utf7-imap_decode':
720 $ret = mb_convert_encoding($ret, 'EUC-JP', 'UTF7-IMAP');
721 break;
722 }
723 }
724 return $ret;
725 }
726
727
728 /*
729 * Korean charset extra function
730 * Hangul(Korean Character) Attached File Name Fix.
731 */
732 function korean_charset_xtra() {
733
734 $ret = func_get_arg(1); /* default return value */
735 if (func_get_arg(0) == 'downloadfilename') { /* action */
736 $ret = str_replace("\x0D\x0A", '', $ret); /* Hanmail's CR/LF Clear */
737 for ($i=0;$i<strlen($ret);$i++) {
738 if ($ret[$i] >= "\xA1" && $ret[$i] <= "\xFE") { /* 0xA1 - 0XFE are Valid */
739 $i++;
740 continue;
741 } else if (($ret[$i] >= 'a' && $ret[$i] <= 'z') || /* From Original ereg_replace in download.php */
742 ($ret[$i] >= 'A' && $ret[$i] <= 'Z') ||
743 ($ret[$i] == '.') || ($ret[$i] == '-')) {
744 continue;
745 } else {
746 $ret[$i] = '_';
747 }
748 }
749
750 }
751
752 return $ret;
753 }
754
755 /*
756 * This function can be used to replace non-braking space symbols
757 * that are inserted in forms by some browsers instead of normal
758 * space symbol.
759 */
760 function cleanup_nbsp($string,$charset) {
761
762 // reduce number of case statements
763 if (stristr('iso-8859-',substr($charset,0,9))){
764 $output_charset="iso-8859-x";
765 }
766 if (stristr('windows-125',substr($charset,0,11))){
767 $output_charset="cp125x";
768 }
769 if (stristr('koi8',substr($charset,0,4))){
770 $output_charset="koi8-x";
771 }
772 if (! isset($output_charset)){
773 $output_charset=strtolower($charset);
774 }
775
776 // where is non-braking space symbol
777 switch($output_charset):
778 case "iso-8859-x":
779 case "cp125x":
780 case "iso-2022-jp":
781 $nbsp="\xA0";
782 break;
783 case "koi8-x":
784 $nbsp="\x9A";
785 break;
786 case "utf-8":
787 $nbsp="\xC2\xA0";
788 break;
789 default:
790 // don't change string if charset is unmatched
791 return $string;
792 endswitch;
793
794 // return space instead of non-braking space.
795 return str_replace($nbsp,' ',$string);
796 }
797 ?>