8 define(
'CH_WSB_LANGUAGE_DEFAULT',
'en');
9 define(
'CH_WSB_LANGUAGE_CATEGORY_SYSTEM', 1);
11 if (!defined (
'CH_SKIP_INSTALL_CHECK')) {
13 if( !$sCurrentLanguage ) {
14 echo
'<br /><b>Fatal error:</b> Cannot apply localization.';
17 require_once( CH_DIRECTORY_PATH_ROOT .
"langs/lang-{$sCurrentLanguage}.php" );
20 require_once(CH_DIRECTORY_PATH_INC .
'db.inc.php');
21 require_once(CH_DIRECTORY_PATH_INC .
'utils.inc.php');
22 require_once(CH_DIRECTORY_PATH_INC .
'profiles.inc.php');
23 require_once(CH_DIRECTORY_PATH_INC .
'params.inc.php');
25 if (!defined (
'CH_SKIP_INSTALL_CHECK')) {
28 if (isset(
$_GET[
'lang'])) {
31 if ($oPermalinks->redirectIfNecessary(array(
'lang')))
41 if( !$sLang && !
empty($_POST[
'lang']) ) $sLang =
tryToGetLang( $_POST[
'lang'], $isSetCookie );
42 if( !$sLang && !
empty($_COOKIE[
'lang']) ) $sLang =
tryToGetLang( $_COOKIE[
'lang'] );
44 if( !$sLang && !
empty($_SERVER[
'HTTP_ACCEPT_LANGUAGE']) ) $sLang =
tryToGetLang( $_SERVER[
'HTTP_ACCEPT_LANGUAGE'] );
48 setlocale(LC_TIME, $sLang.
'_'.strtoupper($sLang).
'.utf-8', $sLang.
'_'.strtoupper($sLang).
'.utf8', $sLang.
'.utf-8', $sLang.
'.utf8', $sLang);
55 $sLangs = trim( $sLangs );
59 $sLangs = preg_replace(
'/[^a-zA-Z0-9,;-]/m',
'', $sLangs );
60 $sLangs = strtolower( $sLangs );
65 $aLangs = explode(
',', $sLangs );
66 foreach( $aLangs
as $sLang ) {
67 if( !$sLang )
continue;
69 list( $sLang ) = explode(
';', $sLang, 2 );
70 if( !$sLang )
continue;
74 if( $bSetCookie && ($_COOKIE[
'lang'] != $sLang) && (
$GLOBALS[
'glLangSet'] != $sLang) ) {
82 list( $sLang, $sCntr ) = explode(
'-', $sLang, 2 );
83 if( !$sLang
or !$sCntr )
continue;
98 if (!preg_match(
'/^[A-Za-z0-9_]+$/', $sLang))
100 if( file_exists( CH_DIRECTORY_PATH_ROOT .
"langs/lang-{$sLang}.php" ) )
106 $iLangID = (int)
$GLOBALS[
'MySQL']->fromCache(
'checkLangExists_'.$sLang,
'getOne',
"SELECT `ID` FROM `sys_localization_languages` WHERE `Name` = '$sLang'");
126 db_res(
'UPDATE `Profiles` SET `LangID` = ' . (
int) $iLangID .
' WHERE `ID` = ' . (
int) $_COOKIE[
'memberID'] );
132 setcookie(
'lang',
'',
time() - 60*60*24,
'/' );
133 setcookie(
'lang', $sLang,
time() + 60*60*24*365,
'/' );
143 return db_value(
"SELECT `Name` FROM `sys_localization_languages` WHERE `ID` = '" . (
int)$sLangId .
"'" );
149 $iProfile = isset($_COOKIE[
'memberID']) ? (int)$_COOKIE[
'memberID'] : 0;
152 return $GLOBALS[
'MySQL']->fromMemory(
'profile_lang_' . $iProfile,
'getOne',
'SELECT `l`.`Name` FROM `sys_localization_languages` AS `l` INNER JOIN `Profiles` AS `p` ON (`p`.`LangID` = `l`.`ID`) WHERE `p`.`ID` = ' . $iProfile);
160 foreach ($aLangsFull
as $sKey => $aLang) {
161 $sFlag = $bAddFlag ? ($aLang[
'Flag'] ? $aLang[
'Flag'] :
'xx') :
'';
162 $aLangs[ $sKey ] = $aLang[
'Title'] . $sFlag;
170 return $GLOBALS[
'MySQL']->getAllWithKey(
'SELECT * FROM `sys_localization_languages` ORDER BY `Title` ASC', $bRetIDs ?
'ID' :
'Name');
175 $langID = (int)$langID;
177 if($langID <= 0)
return false;
181 FROM `sys_localization_languages`
182 WHERE `ID` = '.$langID);
184 if($resLangs->rowCount() <= 0)
return false;
186 $arrLang = $resLangs->fetch();
189 SELECT COUNT(`IDKey`)
190 FROM `sys_localization_strings`
191 WHERE `IDLanguage` = ?', [$langID]);
193 $numStrings = $numStrings->fetch(PDO::FETCH_NUM);
194 $numStrings = $numStrings[0];
196 $res1 =
db_res(
'DELETE FROM `sys_localization_strings` WHERE `IDLanguage` = '.$langID);
200 $res2 =
db_res(
'DELETE FROM `sys_localization_languages` WHERE `ID` = '.$langID);
204 @unlink( CH_DIRECTORY_PATH_ROOT .
'langs/lang-'.$arrLang[
'Name'].
'.php');
207 $sQuery =
"DELETE FROM `sys_email_templates` WHERE `LangID` = '{$langID}'";
215 $resKeys =
db_res(
'SELECT `ID`, `IDCategory`, `Key` FROM `sys_localization_keys`');
219 while($arr = $resKeys->fetch()) {
222 $arrKeys[
$ID] = $arr;
232 $aMethod = array(
'name' =>
'getAll',
'params' => array(0 =>
'query'));
233 $sSelectClause = $sJoinClause = $sWhereClause = $sGroupClause = $sOrderClause = $sLimitClause =
"";
235 $sSelectClause =
"`tk`.`ID` AS `id`, `tk`.`IDCategory` AS `category_id`, `tk`.`Key` AS `key`";
237 if(!isset($aParams[
'order']) ||
empty($aParams[
'order']))
238 $sOrderClause =
" `tk`.`Key` ASC ";
240 switch($aParams[
'type']) {
241 case 'by_language_name_key_key':
242 $aMethod[
'name'] =
'getAllWithKey';
243 $aMethod[
'params'][1] =
'key';
245 $sSelectClause .=
", `ts`.`String` AS `string` ";
246 $sJoinClause =
" LEFT JOIN `sys_localization_strings` AS `ts` ON `tk`.`ID`=`ts`.`IDKey` LEFT JOIN `sys_localization_languages` AS `tl` ON `ts`.`IDLanguage`=`tl`.`ID` ";
247 $sWhereClause =
" AND `tl`.`Name`='" . $aParams[
'value'] .
"' ";
250 case 'by_language_id_key_key':
251 $aMethod[
'name'] =
'getAllWithKey';
252 $aMethod[
'params'][1] =
'key';
254 $sSelectClause .=
", `ts`.`String` AS `string` ";
255 $sJoinClause =
" LEFT JOIN `sys_localization_strings` AS `ts` ON `tk`.`ID`=`ts`.`IDKey` ";
256 $sWhereClause =
" AND `ts`.`IDLanguage`='" . (int)$aParams[
'value'] .
"' ";
260 $aMethod[
'params'][0] =
"SELECT " . $sSelectClause .
"
261 FROM `sys_localization_keys` AS `tk`" . $sJoinClause .
"
262 WHERE 1" . $sWhereClause .
" " . $sGroupClause .
"
263 ORDER BY" . $sOrderClause . $sLimitClause;
264 return call_user_func_array(array($MySQL, $aMethod[
'name']), $aMethod[
'params']);
269 $keyID = (int)$keyID;
274 FROM `sys_localization_string_params`
275 WHERE `IDKey` = $keyID
279 $arrParams = array();
281 while ($arr = $resParams->fetch()) {
282 $arrParams[(int)$arr[
'IDParam']] = $arr[
'Description'];
290 $resCategories =
db_res(
'SELECT `ID`, `Name` FROM `sys_localization_categories` ORDER BY `Name`');
292 $arrCategories = array();
294 while ($arr = $resCategories->fetch()) {
295 $arrCategories[$arr[
'ID']] = $arr[
'Name'];
298 return $arrCategories;
303 $langID = (int)$langID;
308 $resLangs =
db_res(
'SELECT `ID`, `Name` FROM `sys_localization_languages`');
312 FROM `sys_localization_languages`
313 WHERE `ID` = '.$langID
317 if ( $resLangs->rowCount() <= 0 )
320 while($arrLanguage = $resLangs->fetch()) {
321 $aKeys =
getLocalizationKeysBy(array(
'type' =>
'by_language_id_key_key',
'value' => $arrLanguage[
'ID']));
324 $aKeys = array_merge($aKeysAll, $aKeys);
327 $handle = fopen( CH_DIRECTORY_PATH_ROOT .
"langs/lang-{$arrLanguage['Name']}.php",
'w');
328 if($handle ===
false)
332 /*****************************************************************************/
333 /* NOTICE: Do not modify this file manually. */
335 /* This file is automatically generated each time the system and/or module */
336 /* languages are recompiled. */
338 /* To modify the text of a language key, refer to */
339 /* https://www.cheetahwsb.com/m/cheetah_docs/chapter/using-language-keys */
340 /*****************************************************************************/
342 $fileContent =
"<".
"?PHP{$newLine}{$sNotice}{$newLine}\$LANG_INFO=" . var_export($arrLanguage,
true) .
";{$newLine}\$LANG = array(";
344 foreach($aKeys
as $aKey) {
345 $langKey = str_replace(array(
"\\",
"'"), array(
"\\\\",
"\\'"), $aKey[
'key']);
346 $langStr = str_replace(array(
"\\",
"'"), array(
"\\\\",
"\\'"), $aKey[
'string']);
348 $fileContent .=
"{$newLine}\t'$langKey' => '$langStr',";
351 $fileContent = trim($fileContent,
',');
353 $writeResult = fwrite($handle, $fileContent.
"{$newLine});?".
">");
354 if($writeResult ===
false)
return false;
356 if(fclose($handle) ===
false)
return false;
358 @chmod( CH_DIRECTORY_PATH_ROOT .
"langs/lang-{$arrLanguage['Name']}.php", 0666);
367 $langID = (int)$langID;
368 $categoryID = (int)$categoryID;
370 if ( $langID == -1 ) {
371 $resLangs =
db_res(
'SELECT `ID`, `Name` FROM `sys_localization_languages`');
375 FROM `sys_localization_languages`
376 WHERE `ID` = '.$langID);
383 INSERT INTO `sys_localization_keys`
384 SET `IDCategory` = $categoryID,
385 `Key` = '$langKey'",
false );
391 while($arrLanguage = $resLangs->fetch()) {
392 $resInsertString =
db_res(
"
393 INSERT INTO `sys_localization_strings`
394 SET `IDKey` = $keyID,
395 `IDLanguage` = {$arrLanguage['ID']},
396 `String` = '$langString'",
false );
409 $langID = (int)$langID;
411 if ( $langID == -1 ) {
412 $resLangs =
db_res(
'SELECT `ID`, `Name` FROM `sys_localization_languages`');
416 FROM `sys_localization_languages`
417 WHERE `ID` = '.$langID);
425 FROM `sys_localization_keys`
426 WHERE `Key` = '$langKey'",
false );
431 $keyID = $arrKey[
'ID'];
433 while($arrLanguage = $resLangs->fetch()) {
434 $resUpdateString =
db_res(
"
435 UPDATE `sys_localization_strings`
436 SET `String` = '$langString'
437 WHERE `IDKey` = $keyID
438 AND `IDLanguage` = {$arrLanguage['ID']}",
false );
449 $langID = (int)$langID;
451 if ( $langID == -1 ) {
452 $resLangs =
db_res(
'SELECT `ID`, `Name` FROM `sys_localization_languages`');
456 FROM `sys_localization_languages`
457 WHERE `ID` = '.$langID);
465 FROM `sys_localization_keys`
466 WHERE `Key` = '$langKey'",
false );
471 $keyID = $arrKey[
'ID'];
473 while($arrLanguage = $resLangs->fetch()) {
474 $resDeleteString =
db_res(
"
475 DELETE FROM `sys_localization_strings`
476 WHERE `IDKey` = $keyID
477 AND `IDLanguage` = {$arrLanguage['ID']}",
false );
483 DELETE FROM `sys_localization_keys`
484 WHERE `Key` = '$langKey' LIMIT 1",
false );
489 function _t_action( $str, $arg0 =
"", $arg1 =
"", $arg2 =
"" )
491 return MsgBox(
_t($str,$arg0,$arg1,$arg2) );
496 return MsgBox(
_t($str,$arg0,$arg1,$arg2) );
499 function echo_t_err( $str, $arg0 =
"", $arg1 =
"", $arg2 =
"" )
501 return MsgBox(
_t($str,$arg0,$arg1,$arg2) );
504 function _t_err( $str, $arg0 =
"", $arg1 =
"", $arg2 =
"" )
506 return MsgBox(
_t($str,$arg0,$arg1,$arg2) );
509 function _t($key, $arg0 =
"", $arg1 =
"", $arg2 =
"")
513 if(isset(
$LANG[$key])) {
515 $str = str_replace(
'{0}', $arg0, $str);
516 $str = str_replace(
'{1}', $arg1, $str);
517 $str = str_replace(
'{2}', $arg2, $str);
528 if(isset(
$LANG[$key])) {
531 if(!is_array($args)) {
532 return str_replace(
'{0}', $args, $str);
535 foreach ($args
as $key => $val) {
536 $str = str_replace(
'{'.$key.
'}', $val, $str);
547 $aUnits = array(
'_sys_x_byte',
'_sys_x_kilobyte',
'_sys_x_megabyte',
'_sys_x_gigabyte',
'_sys_x_terabyte');
549 $iBytes = max($iBytes, 0);
550 $iPow = floor(($iBytes ? log($iBytes) : 0) / log(1024));
551 $iPow = min($iPow, count($aUnits) - 1);
553 $iBytes /= (1 << (10 * $iPow));
554 return _t($aUnits[$iPow], round($iBytes, $iPrecision));
559 return $GLOBALS[
'sCurrentLanguage'];