76 lines
3.6 KiB
PHP
76 lines
3.6 KiB
PHP
<?php
|
|
# Copyright (c) 2003-2005, Jannis Hermanns (on behalf the Serendipity Developer Team)
|
|
# All rights reserved. See LICENSE file for licensing details
|
|
|
|
if (IN_serendipity !== true) {
|
|
die ("Don't hack!");
|
|
}
|
|
|
|
if (isset($serendipity['lang']) && !isset($serendipity['languages'][$serendipity['lang']])) {
|
|
$serendipity['lang'] = $serendipity['autolang'];
|
|
}
|
|
|
|
if (!defined('serendipity_LANG_LOADED') || serendipity_LANG_LOADED !== true) {
|
|
// The following variable can be set in serendipity_config_local.inc.php to force your templates being able to use language override includes
|
|
if (isset($serendipity['useTemplateLanguage']) && $serendipity['useTemplateLanguage'] === true) {
|
|
if (defined('S9Y_DATA_PATH')) {
|
|
@include_once (S9Y_DATA_PATH . 'templates/' . $serendipity['template'] . '/UTF-8/lang_' . $serendipity['lang'] . '.inc.php');
|
|
@include_once (S9Y_DATA_PATH . 'templates/' . $serendipity['template'] . '/UTF-8/lang_en.inc.php');
|
|
|
|
@include_once (S9Y_DATA_PATH . 'templates/' . $serendipity['template_backend'] . '/UTF-8/lang_' . $serendipity['lang'] . '.inc.php');
|
|
@include_once (S9Y_DATA_PATH . 'templates/' . $serendipity['template_backend'] . '/UTF-8/lang_en.inc.php');
|
|
} else {
|
|
@include_once (S9Y_INCLUDE_PATH . 'templates/' . $serendipity['template'] . '/UTF-8/lang_' . $serendipity['lang'] . '.inc.php');
|
|
@include_once (S9Y_INCLUDE_PATH . 'templates/' . $serendipity['template'] . '/UTF-8/lang_en.inc.php');
|
|
|
|
@include_once (S9Y_INCLUDE_PATH . 'templates/' . $serendipity['template_backend'] . '/UTF-8/lang_' . $serendipity['lang'] . '.inc.php');
|
|
@include_once (S9Y_INCLUDE_PATH . 'templates/' . $serendipity['template_backend'] . '/UTF-8/lang_en.inc.php');
|
|
}
|
|
}
|
|
|
|
// Try and include preferred language from the configurated setting
|
|
if (@include(S9Y_INCLUDE_PATH . 'lang/UTF-8/serendipity_lang_'. $serendipity['lang'] .'.inc.php') ) {
|
|
// Only here can we truly say the language is loaded
|
|
define('serendipity_LANG_LOADED', true);
|
|
if (function_exists('serendipity_db_reconnect')) {
|
|
serendipity_db_reconnect();
|
|
}
|
|
} elseif (IS_installed === false || (defined('IS_up2date') && IS_up2date === false)) { /* -- Auto-Guess -- */
|
|
// If no config file is loaded, language includes are not available.
|
|
// Now include one. Try to auto-guess the language by looking up the HTTP_ACCEPT_LANGUAGE.
|
|
serendipity_detectLang(true);
|
|
} //endif
|
|
|
|
// Do fallback to english
|
|
if (IS_installed === false || (defined('IS_up2date') && IS_up2date === false)) {
|
|
@include_once(S9Y_INCLUDE_PATH . 'lang/UTF-8/serendipity_lang_en.inc.php');
|
|
}
|
|
}
|
|
|
|
if (!defined('serendipity_MB_LOADED') && defined('serendipity_LANG_LOADED')) {
|
|
// Needs to be included here because we need access to constant LANG_CHARSET definied in languages (not available for compat.inc.php)
|
|
|
|
@mb_language('uni');
|
|
@mb_internal_encoding('UTF-8');
|
|
|
|
/**
|
|
* Wrapper for multibyte string operations
|
|
*
|
|
* Multibyte string functions wrapper:
|
|
* strlen(), strpos(), strrpos(), strtolower(), strtoupper(), substr(), ucfirst()
|
|
*
|
|
* @access public
|
|
* @param mixed Any input array, dynamically evaluated for best emulation
|
|
* @return mixed
|
|
*/
|
|
function serendipity_mb_ucfirst(string $str)
|
|
{
|
|
// there's no mb_ucfirst, so emulate it
|
|
return mb_strtoupper(mb_substr($str, 0, 1)) . mb_substr($str, 1);
|
|
}
|
|
|
|
define('serendipity_MB_LOADED', true);
|
|
}
|
|
|
|
/* vim: set sts=4 ts=4 expandtab : */
|