X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=includes%2Flang%2Fgettext.php;h=4d80c9b3b163af0b09b5013840e8700e65a2eb62;hb=a773a23cfa8bdb30986665986ea97ebdfb3d2696;hp=ec2a3b8bd3ace6782edc2e4cbac5c68073b2e07f;hpb=16b19d2a0218d206004c9b957344c6cd15835e15;p=fa-stable.git diff --git a/includes/lang/gettext.php b/includes/lang/gettext.php index ec2a3b8b..4d80c9b3 100644 --- a/includes/lang/gettext.php +++ b/includes/lang/gettext.php @@ -60,6 +60,7 @@ function is_error($err) { class gettext_native_support { var $_interpolation_vars = array(); + var $domain_path; /** * Set gettext language code. @@ -80,10 +81,13 @@ class gettext_native_support $lshort = strtr($up, '-',''); $ushort = strtr($low, '-',''); - $set = setlocale(LC_ALL, $lang_code.".".$encoding, - $lang_code.".".$up, $lang_code.".".$low, - $lang_code.".".$ushort, $lang_code.".".$lshort); - + if ($lang_code == 'C') + $set = setlocale(LC_ALL,'C'); + else + $set = setlocale(LC_ALL, $lang_code.".".$encoding, + $lang_code.".".$up, $lang_code.".".$low, + $lang_code.".".$ushort, $lang_code.".".$lshort); + setlocale(LC_NUMERIC, 'C'); // important for numeric presentation etc. if ($set === false) { @@ -100,35 +104,41 @@ class gettext_native_support */ function check_support($lang_code, $encoding) { - $old = setlocale(LC_MESSAGES, '0'); + + $old = setlocale(LC_CTYPE, '0'); // LC_MESSAGES does not exist on Win $up = strtoupper($encoding); $low = strtolower($encoding); $lshort = strtr($up, '-',''); $ushort = strtr($low, '-',''); - $test = setlocale(LC_MESSAGES, + $test = setlocale(LC_ALL, $lang_code.".".$encoding, $lang_code.".".$up, $lang_code.".".$low, $lang_code.".".$ushort, $lang_code.".".$lshort) !== false; - - setlocale(LC_MESSAGES, $old); + setlocale(LC_ALL, $old); + setlocale(LC_NUMERIC, 'C'); return $test; } /** * Add a translation domain. */ - function add_domain($domain, $path=false) + function add_domain($domain, $path=false, $version='') { if ($path === false) - { - bindtextdomain($domain, "./locale/"); - } - else - { - bindtextdomain($domain, $path); - } + $path = $this->domain_path; + if ($path === false) + $path = "./locale"; + if ($domain == "") + $domain = "?"; + if ($version) { + // To avoid need for apache server restart after change of *.mo file + // we have to include file version as part of filename. + // This is alternative naming convention: $domain = $version.'/'.$domain; + $domain .= '-'.$version; + } + bindtextdomain($domain, $path); //bind_textdomain_codeset($domain, $encoding); textdomain($domain); } @@ -286,8 +296,17 @@ class gettext_php_support extends gettext_native_support * @param string $path optional -- Repository path * @throws GetText_Error */ - function add_domain($domain, $path = "./locale/") + function add_domain($domain, $path = false, $version ='') { + if ($path === false) + $path = $this->domain_path; + if ($path === false) + $path = "./locale"; + + if ($version) { + $domain .= '-'.$version; + } + if (array_key_exists($domain, $this->_domains)) { return; @@ -523,9 +542,16 @@ class gettext_php_support_compiler } } -/** -* get_text related error. +/* + Set current gettext domain path */ -//class GetText_Error extends PEAR_Error {} - +function set_ext_domain($path='') { + global $path_to_root; + + $lang_path = $path_to_root . ($path ? '/' : '') .$path.'/lang'; + // ignore change when extension does not provide translation structure + if (file_exists($lang_path)) + $_SESSION['get_text']->add_domain($_SESSION['language']->code, + $lang_path, $path ? '' : $_SESSION['language']->version); +} ?>