mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 17:14:36 +01:00
bf036043b2
- caching the phrases in new egw_cache on Tree level --> a good speed improvment on my devel system - also added a global function check_load_extension($extension,$throw=false)
163 lines
3.9 KiB
PHP
163 lines
3.9 KiB
PHP
<?php
|
|
/**
|
|
* Setup
|
|
*
|
|
* @link http://www.egroupware.org
|
|
* @package setup
|
|
* @author Dan Kuykendall <seek3r@phpgroupware.org>
|
|
* @author Miles Lott <milos@groupwhere.org>
|
|
* @author Ralf Becker <RalfBecker-AT-outdoor-training.de>
|
|
* @license http://opensource.org/licenses/gpl-license.php GPL - GNU General Public License
|
|
* @version $Id$
|
|
*/
|
|
|
|
if (!defined('MAX_MESSAGE_ID_LENGTH'))
|
|
{
|
|
define('MAX_MESSAGE_ID_LENGTH',128);
|
|
}
|
|
|
|
// Define prefix for langfiles (historically 'phpgw_')
|
|
define('EGW_LANGFILE_PREFIX', 'egw_');
|
|
|
|
class setup_translation
|
|
{
|
|
var $langarray = array();
|
|
|
|
var $no_translation_marker = '*';
|
|
|
|
/**
|
|
* constructor for the class, loads all phrases into langarray
|
|
*
|
|
* @param $lang user lang variable (defaults to en)
|
|
*/
|
|
function __construct()
|
|
{
|
|
$ConfigLang = get_var('ConfigLang',Array('POST','COOKIE'));
|
|
|
|
if(!$ConfigLang)
|
|
{
|
|
$lang = 'en';
|
|
}
|
|
else
|
|
{
|
|
$lang = $ConfigLang;
|
|
}
|
|
|
|
$fn = '.' . SEP . 'lang' . SEP . EGW_LANGFILE_PREFIX . $lang . '.lang';
|
|
if (!file_exists($fn))
|
|
{
|
|
$fn = '.' . SEP . 'lang' . SEP . EGW_LANGFILE_PREFIX .'en.lang';
|
|
}
|
|
if (file_exists($fn) && ($fp = fopen($fn,'r')))
|
|
{
|
|
while (($data = fgets($fp,8000)))
|
|
{
|
|
// explode with "\t" and removing "\n" with str_replace, needed to work with mbstring.overload=7
|
|
list($message_id,,,$content) = explode("\t",$data);
|
|
$this->langarray[strtolower(trim($message_id))] = str_replace("\n",'',$content);
|
|
}
|
|
fclose($fp);
|
|
|
|
if (!$GLOBALS['egw_setup']->system_charset)
|
|
{
|
|
$GLOBALS['egw_setup']->system_charset = $this->langarray['charset'];
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Translate phrase to user selected lang
|
|
*
|
|
* @param $key phrase to translate
|
|
* @param $vars vars sent to lang function, passed to us
|
|
*/
|
|
function translate($key, $vars=False)
|
|
{
|
|
static $placeholders = array('%1','%2','%3','%4','%5','%6','%7','%8','%9','%10');
|
|
|
|
$ret = $key . $this->no_translation_marker;
|
|
$key = strtolower(trim($key));
|
|
if (isset($this->langarray[$key]))
|
|
{
|
|
$ret = $this->langarray[$key];
|
|
}
|
|
if ($GLOBALS['egw_setup']->system_charset != $this->langarray['charset'])
|
|
{
|
|
$ret = translation::convert($ret,$this->langarray['charset']);
|
|
}
|
|
if (is_array($vars))
|
|
{
|
|
$ret = str_replace($placeholders, $vars, $ret);
|
|
}
|
|
return $ret;
|
|
}
|
|
|
|
function get_langs($DEBUG=False)
|
|
{
|
|
return translaton::get_langs($DEBUG);
|
|
}
|
|
|
|
function drop_langs($appname,$DEBUG=False)
|
|
{
|
|
return translaton::drop_langs($appname,$DEBUG);
|
|
}
|
|
|
|
function add_langs($appname,$DEBUG=False,$force_langs=False)
|
|
{
|
|
return translaton::add_langs($appname,$DEBUG,$force_langs);
|
|
}
|
|
|
|
function drop_add_all_langs($langs=False)
|
|
{
|
|
if (!$langs && !count($langs = translation::get_langs()))
|
|
{
|
|
$langs[] = 'en';
|
|
}
|
|
return translation::install_langs($langs,'dumpold');
|
|
}
|
|
|
|
/**
|
|
* List availible charsets and it's supported languages
|
|
* @param boolean/string $name=false name for selectbox or false to return an array
|
|
* @param string $selected selected charset
|
|
* @return string/array html for a selectbox or array with charset / languages pairs
|
|
*/
|
|
function get_charsets($name=false,$selected='')
|
|
{
|
|
$charsets = array(
|
|
'utf-8' => 'utf-8: '.lang('all languages (incl. not listed ones)'),
|
|
);
|
|
if (($f = fopen('lang/languages','r')))
|
|
{
|
|
while(($line = fgets($f)) !== false)
|
|
{
|
|
list($lang,$language) = explode("\t",trim($line));
|
|
if ($lang && ($lf = @fopen("../phpgwapi/setup/" . EGW_LANGFILE_PREFIX . "$lang.lang",'r')))
|
|
{
|
|
while(($line = fgets($lf)) !== false)
|
|
{
|
|
list($phrase,,,$charset) = explode("\t",$line);
|
|
if ($phrase == 'charset')
|
|
{
|
|
$charset = trim(strtolower($charset));
|
|
|
|
if ($charset != 'utf-8')
|
|
{
|
|
$charsets[$charset] .= (isset($charsets[$charset]) ? ', ' : $charset.': ') . $language;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
fclose($lf);
|
|
}
|
|
}
|
|
fclose($f);
|
|
}
|
|
if (!$name)
|
|
{
|
|
return $charsets;
|
|
}
|
|
return html::select($name,trim(strtolower($selected)),$charsets,true);
|
|
}
|
|
}
|