X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=functions%2Fi18n.php;h=82242dd3a543d5a2b7505d7fb9d378dc1a5ae540;hb=d8a8203ae65c8a1a1ff4740bee41053f565a0a15;hp=e4954114ef67af9cc44ce58e59deda79ea9570fd;hpb=66d7950fb1bd05f9fcad109ae679c470abb78914;p=squirrelmail.git diff --git a/functions/i18n.php b/functions/i18n.php index e4954114..82242dd3 100644 --- a/functions/i18n.php +++ b/functions/i18n.php @@ -435,11 +435,8 @@ function charset_decode_iso_8859_7 ($string) { * ISO-8859-7 characters from 11/04 (0xB4) to 11/06 (0xB6) * These are Unicode 900-902 */ - while (ereg("([\264-\266])", $string, $res)) { - $replace = '&#' . (ord($res[1])+720) . ';'; - $string = str_replace($res[1], $replace, $string); - } - + $string = preg_replace("/([\264-\266])/","'&#' . (ord(\\1)+720)",$string); + /* 11/07 (0xB7) Middle dot is the same in iso-8859-1 */ $string = str_replace("\267", '·', $string); @@ -447,10 +444,7 @@ function charset_decode_iso_8859_7 ($string) { * ISO-8859-7 characters from 11/08 (0xB8) to 11/10 (0xBA) * These are Unicode 900-902 */ - while (ereg("([\270-\272])", $string, $res)) { - $replace = '&#' . (ord($res[1])+720) . ";"; - $string = str_replace($res[1], $replace, $string); - } + $string = preg_replace("/([\270-\272])/","'&#' . (ord(\\1)+720)",$string); /* * 11/11 (0xBB) Right angle quotation mark is the same as in @@ -459,10 +453,7 @@ function charset_decode_iso_8859_7 ($string) { $string = str_replace("\273", '»', $string); /* And now the rest of the charset */ - while (ereg("([\274-\376])", $string, $res)) { - $replace = '&#' . (ord($res[1])+720) . ';'; - $string = str_replace($res[1], $replace, $string); - } + $string = preg_replace("/([\274-\376])/","'&#' . (ord(\\1)+720)",$string); return $string; } @@ -475,7 +466,7 @@ function charset_decode_iso_8859_15 ($string) { // Euro sign $string = str_replace ("\244", '€', $string); // Latin capital letter S with caron - $string = str_replace ("\244", 'Š', $string); + $string = str_replace ("\246", 'Š', $string); // Latin small letter s with caron $string = str_replace ("\250", 'š', $string); // Latin capital letter Z with caron @@ -492,7 +483,7 @@ function charset_decode_iso_8859_15 ($string) { return (charset_decode_iso_8859_1($string)); } -/* ISO-8859-15 is Cyrillic */ +/* ISO-8859-5 is Cyrillic */ function charset_decode_iso_8859_5 ($string) { // Convert to KOI8-R, then return this decoded. $string = convert_cyr_string($string, 'i', 'k'); @@ -712,19 +703,19 @@ function set_up_language($sm_language, $do_search = false) { $sm_notAlias = $languages[$sm_notAlias]['ALIAS']; } - if ( isset($sm_language) && + if ( isset($sm_language) && $use_gettext && $sm_language != '' && isset($languages[$sm_notAlias]['CHARSET']) ) { bindtextdomain( 'squirrelmail', '../locale/' ); - textdomain( 'squirrelmail' ); - if ( !ini_get('safe_mode') && + textdomain( 'squirrelmail' ); + if ( !ini_get('safe_mode') && getenv( 'LC_ALL' ) != $sm_notAlias ) { putenv( "LC_ALL=$sm_notAlias" ); putenv( "LANG=$sm_notAlias" ); putenv( "LANGUAGE=$sm_notAlias" ); } - setlocale('LC_ALL', $sm_notAlias); + setlocale(LC_ALL, $sm_notAlias); $squirrelmail_language = $sm_notAlias; header( 'Content-Type: text/html; charset=' . $languages[$sm_notAlias]['CHARSET'] ); } @@ -742,7 +733,7 @@ function set_my_charset(){ * message blindly with the system-wide $default_charset. */ global $data_dir, $username, $default_charset, $languages; - + $my_language = getPref($data_dir, $username, 'language'); if (!$my_language) { return; @@ -840,8 +831,8 @@ $languages['nl']['ALIAS'] = 'nl_NL'; $languages['no_NO']['NAME'] = 'Norwegian (Bokmål)'; $languages['no_NO']['CHARSET'] = 'iso-8859-1'; $languages['no']['ALIAS'] = 'no_NO'; -$languages['no_NO_ny']['NAME'] = 'Norwegian (Nynorsk)'; -$languages['no_NO_ny']['CHARSET'] = 'iso-8859-1'; +$languages['nn_NO']['NAME'] = 'Norwegian (Nynorsk)'; +$languages['nn_NO']['CHARSET'] = 'iso-8859-1'; $languages['pl_PL']['NAME'] = 'Polish'; $languages['pl_PL']['CHARSET'] = 'iso-8859-2'; @@ -857,9 +848,9 @@ $languages['ru_RU']['NAME'] = 'Russian'; $languages['ru_RU']['CHARSET'] = 'koi8-r'; $languages['ru']['ALIAS'] = 'ru_RU'; -$languages['sr']['NAME'] = 'Serbian'; -$languages['sr']['CHARSET'] = 'iso-8859-2'; -$languages['sr_YU']['ALIAS'] = 'sr'; +$languages['sr_YU']['NAME'] = 'Serbian'; +$languages['sr_YU']['CHARSET'] = 'iso-8859-2'; +$languages['sr']['ALIAS'] = 'sr_YU'; $languages['sv_SE']['NAME'] = 'Swedish'; $languages['sv_SE']['CHARSET'] = 'iso-8859-1'; @@ -869,12 +860,14 @@ $languages['tr_TR']['NAME'] = 'Turkish'; $languages['tr_TR']['CHARSET'] = 'iso-8859-9'; $languages['tr']['ALIAS'] = 'tr_TR'; -// it's zh_TW, actually. - $languages['zh_TW']['NAME'] = 'Taiwan'; $languages['zh_TW']['CHARSET'] = 'big5'; $languages['tw']['ALIAS'] = 'zh_TW'; +$languages['zh_TW']['NAME'] = 'Chinese'; +$languages['zh_TW']['CHARSET'] = 'gb2312'; +$languages['tw']['ALIAS'] = 'zh_CN'; + $languages['sk_SK']['NAME'] = 'Slovak'; $languages['sk_SK']['CHARSET'] = 'iso-8859-2'; $languages['sk']['ALIAS'] = 'sk_SK'; @@ -899,6 +892,14 @@ $languages['bg_BG']['NAME'] = 'Bulgarian'; $languages['bg_BG']['CHARSET'] = 'windows-1251'; $languages['bg']['ALIAS'] = 'bg_BG'; +// Right to left languages + +$languages['he_HE']['NAME'] = 'Hebrew'; +$languages['he_HE']['CHARSET'] = 'windows-1255'; +$languages['he_HE']['DIR'] = 'rtl'; +$languages['he']['ALIAS'] = 'he_HE'; + + /* Detect whether gettext is installed. */ $gettext_flags = 0; if (function_exists('_')) { @@ -938,4 +939,4 @@ elseif ($gettext_flags == 0) { } } -?> \ No newline at end of file +?>