2005-11-05 09:51:06 +01:00
|
|
|
<?php
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* eGroupWare API - Translations
|
2009-04-20 13:59:39 +02:00
|
|
|
*
|
2008-03-15 16:30:15 +01:00
|
|
|
* @link http://www.egroupware.org
|
|
|
|
* @author Joseph Engo <jengo@phpgroupware.org>
|
|
|
|
* @author Dan Kuykendall <seek3r@phpgroupware.org>
|
|
|
|
* Copyright (C) 2000, 2001 Joseph Engo
|
|
|
|
* @license http://opensource.org/licenses/lgpl-license.php LGPL - GNU Lesser General Public License
|
|
|
|
* @package api
|
|
|
|
* @version $Id$
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* eGroupWare API - Translations
|
2009-04-20 13:59:39 +02:00
|
|
|
*
|
|
|
|
* All methods of this class can now be called static.
|
|
|
|
*
|
|
|
|
* Translations are cached tree-wide via egw_cache class.
|
2008-03-15 16:30:15 +01:00
|
|
|
*/
|
|
|
|
class translation
|
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
/**
|
|
|
|
* Language of current user, will be set by init()
|
2008-03-15 16:30:15 +01:00
|
|
|
*
|
2009-04-20 13:59:39 +02:00
|
|
|
* @var string
|
2008-03-15 16:30:15 +01:00
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static $userlang = 'en';
|
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
2009-04-20 13:59:39 +02:00
|
|
|
* Already loaded translations by applicaton
|
2008-03-15 16:30:15 +01:00
|
|
|
*
|
2009-04-20 13:59:39 +02:00
|
|
|
* @var array $app => $lang pairs
|
2008-03-15 16:30:15 +01:00
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static $loaded_apps = array();
|
2008-03-15 16:30:15 +01:00
|
|
|
|
|
|
|
/**
|
2009-04-20 13:59:39 +02:00
|
|
|
* Loaded phrases
|
|
|
|
*
|
|
|
|
* @var array $message_id => $translation pairs
|
2008-03-15 16:30:15 +01:00
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static $lang_arr = array();
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
/**
|
|
|
|
* Tables used by this class
|
|
|
|
*/
|
|
|
|
const LANG_TABLE = 'egw_lang';
|
|
|
|
const LANGUAGES_TABLE = 'egw_languages';
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
/**
|
|
|
|
* Prefix of language files (historically 'phpgw_')
|
|
|
|
*/
|
|
|
|
const LANGFILE_PREFIX = 'egw_';
|
|
|
|
const OLD_LANGFILE_PREFIX = 'phpgw_';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Maximal length of a message_id, all message_ids have to be unique in this length,
|
|
|
|
* our column is varchar 128
|
|
|
|
*/
|
|
|
|
const MAX_MESSAGE_ID_LENGTH = 128;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Reference to global db-class
|
|
|
|
*
|
|
|
|
* @var egw_db
|
|
|
|
*/
|
|
|
|
static $db;
|
|
|
|
/**
|
|
|
|
* Mark untranslated strings with an asterisk (*)
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
static $markuntranslated=false;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* System charset
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
static $system_charset;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Is the mbstring extension available
|
|
|
|
*
|
|
|
|
* @var boolean
|
|
|
|
*/
|
|
|
|
static $mbstring;
|
|
|
|
/**
|
|
|
|
* Internal encoding / charset of mbstring (if loaded)
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
static $mbstring_internal_encoding;
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2009-04-28 17:56:04 +02:00
|
|
|
/**
|
|
|
|
* Application which translations have to be cached instance- and NOT tree-specific
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
static $instance_specific_translations = array('loginscreen','mainscreen');
|
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* returns the charset to use (!$lang) or the charset of the lang-files or $lang
|
|
|
|
*
|
|
|
|
* @param string/boolean $lang=False return charset of the active user-lang, or $lang if specified
|
|
|
|
* @return string charset
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function charset($lang=False)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
static $charsets = array();
|
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
if ($lang)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!isset($charsets[$lang]))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!($charsets[$lang] = self::$db->select(self::LANG_TABLE,'content',array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'lang' => $lang,
|
|
|
|
'message_id'=> 'charset',
|
|
|
|
'app_name' => 'common',
|
2009-04-20 13:59:39 +02:00
|
|
|
),__LINE__,__FILE__)->fetchColumn()))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$charsets[$lang] = 'utf-8';
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
return $charsets[$lang];
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
if (self::$system_charset) // do we have a system-charset ==> return it
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$charset = self::$system_charset;
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// if no translations are loaded (system-startup) use a default, else lang('charset')
|
2009-04-20 13:59:39 +02:00
|
|
|
$charset = !self::$lang_arr ? 'utf-8' : strtolower(self::translate('charset'));
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
// we need to set our charset as mbstring.internal_encoding if mbstring.func_overlaod > 0
|
|
|
|
// else we get problems for a charset is different from the default utf-8
|
2009-04-20 13:59:39 +02:00
|
|
|
if (ini_get('mbstring.func_overload') && self::$mbstring_internal_encoding != $charset)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
ini_set('mbstring.internal_encoding',self::$mbstring_internal_encoding = $charset);
|
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
return $charset;
|
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* Initialises global lang-array and loads the 'common' and app-spec. translations
|
2009-04-20 13:59:39 +02:00
|
|
|
*
|
|
|
|
* @param boolean $load_translations=true should we also load translations for common and currentapp
|
2008-03-15 16:30:15 +01:00
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function init($load_translations=true)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!isset(self::$db))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$db = isset($GLOBALS['egw_setup']) && isset($GLOBALS['egw_setup']->db) ? $GLOBALS['egw_setup']->db : $GLOBALS['egw']->db;
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!isset($GLOBALS['egw_setup']))
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$system_charset = $GLOBALS['egw_info']['server']['system_charset'];
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
else
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$system_charset =& $GLOBALS['egw_setup']->system_charset;
|
|
|
|
}
|
|
|
|
if ((self::$mbstring = check_load_extension('mbstring')))
|
|
|
|
{
|
|
|
|
if(!empty(self::$system_charset))
|
|
|
|
{
|
|
|
|
ini_set('mbstring.internal_encoding',self::$system_charset);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
self::$markuntranslated = (boolean) $GLOBALS['egw_info']['server']['markuntranslated'];
|
|
|
|
|
|
|
|
if ($load_translations)
|
|
|
|
{
|
|
|
|
if ($GLOBALS['egw_info']['user']['preferences']['common']['lang'])
|
|
|
|
{
|
|
|
|
self::$userlang = $GLOBALS['egw_info']['user']['preferences']['common']['lang'];
|
|
|
|
}
|
|
|
|
self::add_app('common');
|
|
|
|
if (!count(self::$lang_arr))
|
|
|
|
{
|
|
|
|
self::$userlang = 'en';
|
|
|
|
self::add_app('common');
|
|
|
|
}
|
|
|
|
self::add_app($GLOBALS['egw_info']['flags']['currentapp']);
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* translates a phrase and evtl. substitute some variables
|
|
|
|
*
|
|
|
|
* @param string $key phrase to translate, may contain placeholders %N (N=1,2,...) for vars
|
|
|
|
* @param array/boolean $vars=false vars to replace the placeholders, or false for none
|
|
|
|
* @param string $not_found='*' what to add to not found phrases, default '*'
|
|
|
|
* @return string with translation
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function translate($key, $vars=false, $not_found='*' )
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
static $placeholders = array('%1','%2','%3','%4','%5','%6','%7','%8','%9','%10');
|
|
|
|
|
|
|
|
if (!self::$lang_arr)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::init();
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
$ret = $key; // save key if we dont find a translation
|
2009-04-20 13:59:39 +02:00
|
|
|
if ($not_found && self::$markuntranslated) $ret .= $not_found;
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
if (isset(self::$lang_arr[$key]))
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$ret = self::$lang_arr[$key];
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$new_key = strtolower(trim(substr($key,0,self::MAX_MESSAGE_ID_LENGTH)));
|
2008-03-15 16:30:15 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
if (isset(self::$lang_arr[$new_key]))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
// we save the original key for performance
|
2009-04-20 13:59:39 +02:00
|
|
|
$ret = self::$lang_arr[$key] =& self::$lang_arr[$new_key];
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
if (is_array($vars) && count($vars))
|
|
|
|
{
|
|
|
|
if (count($vars) > 1)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$ret = str_replace($placeholders,$vars,$ret);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
else
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$ret = str_replace('%1',$vars[0],$ret);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2009-04-20 13:59:39 +02:00
|
|
|
* Adds translations for an application
|
|
|
|
*
|
|
|
|
* By default the translations are read from the tree-wide cache
|
2008-03-15 16:30:15 +01:00
|
|
|
*
|
|
|
|
* @param string $app name of the application to add (or 'common' for the general translations)
|
2009-04-20 13:59:39 +02:00
|
|
|
* @param string|boolean $lang=false 2 or 5 char lang-code or false for the users language
|
2008-03-15 16:30:15 +01:00
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function add_app($app,$lang=False)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$lang = $lang ? $lang : self::$userlang;
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!isset(self::$loaded_apps[$app]) || self::$loaded_apps[$app] != $lang)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
//$start = microtime(true);
|
2009-04-28 17:56:04 +02:00
|
|
|
// for loginscreen we have to use a instance specific cache!
|
|
|
|
$loaded =& egw_cache::getCache(in_array($app,self::$instance_specific_translations) ? egw_cache::INSTANCE : egw_cache::TREE,
|
2009-05-02 18:12:20 +02:00
|
|
|
__CLASS__,$app.':'.$lang,array(__CLASS__,'load_app'),array($app,$lang));
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$lang_arr = self::$lang_arr ? array_merge(self::$lang_arr,$loaded) : $loaded;
|
|
|
|
self::$loaded_apps[$app] = $lang;
|
|
|
|
//error_log(__METHOD__."($app,$lang) took ".(1000*(microtime(true)-$start))." ms, loaded ".count($loaded)." phrases -> total=".count(self::$lang_arr).": ".function_backtrace());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Loads translations for an application from the database or direct from the lang-file for setup
|
|
|
|
*
|
|
|
|
* Never use directly, use add_app(), which employes caching (it has to be public, to act as callback for the cache!).
|
|
|
|
*
|
|
|
|
* @param string $app name of the application to add (or 'common' for the general translations)
|
|
|
|
* @param string $lang=false 2 or 5 char lang-code or false for the users language
|
|
|
|
* @return array the loaded strings
|
|
|
|
*/
|
|
|
|
static function &load_app($app,$lang)
|
|
|
|
{
|
|
|
|
//$start = microtime(true);
|
|
|
|
if ($app == 'setup')
|
|
|
|
{
|
|
|
|
$loaded =& self::load_setup($lang);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
$loaded = array();
|
|
|
|
foreach(self::$db->select(self::LANG_TABLE,'message_id,content',array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'lang' => $lang,
|
|
|
|
'app_name' => $app,
|
|
|
|
),__LINE__,__FILE__) as $row)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$loaded[strtolower($row['message_id'])] = $row['content'];
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
//error_log(__METHOD__."($app,$lang) took ".(1000*(microtime(true)-$start))." ms");
|
|
|
|
return $loaded;
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* Adds setup's translations, they are not in the DB!
|
|
|
|
*
|
|
|
|
* @param string $lang 2 or 5 char lang-code
|
2009-04-20 13:59:39 +02:00
|
|
|
* @return array with loaded phrases
|
2008-03-15 16:30:15 +01:00
|
|
|
*/
|
2009-04-23 11:47:22 +02:00
|
|
|
static protected function &load_setup($lang)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
|
|
|
foreach(array(
|
2009-04-20 13:59:39 +02:00
|
|
|
EGW_SERVER_ROOT.'/setup/lang/' . self::LANGFILE_PREFIX . $lang . '.lang',
|
|
|
|
EGW_SERVER_ROOT.'/setup/lang/' . self::OLD_LANGFILE_PREFIX . $lang . '.lang',
|
|
|
|
EGW_SERVER_ROOT.'/setup/lang/' . self::LANGFILE_PREFIX . 'en.lang',
|
|
|
|
EGW_SERVER_ROOT.'/setup/lang/' . self::OLD_LANGFILE_PREFIX . 'en.lang',
|
2008-03-15 16:30:15 +01:00
|
|
|
) as $fn)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if (file_exists($fn) && ($fp = fopen($fn,'r')))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$phrases = array();
|
2008-03-15 16:30:15 +01:00
|
|
|
while ($data = fgets($fp,8000))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
// explode with "\t" and removing "\n" with str_replace, needed to work with mbstring.overload=7
|
|
|
|
list($message_id,,,$content) = explode("\t",$data);
|
|
|
|
$phrases[strtolower(trim($message_id))] = str_replace("\n",'',$content);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
fclose($fp);
|
2009-04-20 13:59:39 +02:00
|
|
|
|
|
|
|
return self::convert($phrases,$phrases['charset']);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
return array(); // nothing found (should never happen, as the en translations always exist)
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* Cached languages
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static $langs;
|
2008-03-15 16:30:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* returns a list of installed langs
|
|
|
|
*
|
|
|
|
* @param boolean $force_read=false force a re-read of the languages
|
|
|
|
* @return array with lang-code => descriptiv lang-name pairs
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function get_installed_langs($force_read=false)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!is_array(self::$langs) || $force_read)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-21 15:26:40 +02:00
|
|
|
if (is_null(self::$db)) self::init(false);
|
|
|
|
|
2009-04-23 11:47:22 +02:00
|
|
|
// we only cache the translation installed for the instance, not the return of this method, which is user-language dependent
|
2009-05-02 18:12:20 +02:00
|
|
|
self::$langs = egw_cache::getInstance(__CLASS__,'installed_langs',array(__CLASS__,'read_installed_langs'));
|
2009-04-23 11:47:22 +02:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!self::$langs)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
return false;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
foreach(self::$langs as $lang => $name)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$langs[$lang] = self::translate($name,False,'');
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
uasort(self::$langs,'strcasecmp');
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
return self::$langs;
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2009-04-23 11:47:22 +02:00
|
|
|
/**
|
|
|
|
* Read the installed languages from the db
|
|
|
|
*
|
|
|
|
* Never use directly, use get_installed_langs(), which employes caching (it has to be public, to act as callback for the cache!).
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
static function &read_installed_langs()
|
|
|
|
{
|
|
|
|
$langs = array();
|
|
|
|
foreach(self::$db->select(self::LANG_TABLE,'DISTINCT lang,lang_name','lang = lang_id',__LINE__,__FILE__,
|
|
|
|
false,'',false,0,','.self::LANGUAGES_TABLE) as $row)
|
|
|
|
{
|
|
|
|
$langs[$row['lang']] = $row['lang_name'];
|
|
|
|
}
|
|
|
|
return $langs;
|
|
|
|
}
|
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* translates a 2 or 5 char lang-code into a (verbose) language
|
|
|
|
*
|
|
|
|
* @param string $lang
|
|
|
|
* @return string/false language or false if not found
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function lang2language($lang)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if (isset(self::$langs[$lang])) // no need to query the DB
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
return self::$langs[$lang];
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
return self::$db->select(self::LANGUAGES_TABLE,'lang_name',array('lang_id' => $lang),__LINE__,__FILE__)->fetchColumn();
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
2009-04-23 11:47:22 +02:00
|
|
|
* List all languages, first the installed ones, then the available ones and last the rest
|
2008-03-15 16:30:15 +01:00
|
|
|
*
|
2009-04-23 11:47:22 +02:00
|
|
|
* @param boolean $force_read=false
|
2008-03-15 16:30:15 +01:00
|
|
|
* @return array with lang_id => lang_name pairs
|
|
|
|
*/
|
2009-04-23 11:47:22 +02:00
|
|
|
static function list_langs($force_read=false)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-23 11:47:22 +02:00
|
|
|
if (!$force_read)
|
|
|
|
{
|
2009-05-02 18:45:38 +02:00
|
|
|
return egw_cache::getInstance(__CLASS__,'list_langs',array(__CLASS__,'list_langs'),array(true));
|
2009-04-23 11:47:22 +02:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
$languages = self::get_installed_langs(); // used translated installed languages
|
2008-03-15 16:30:15 +01:00
|
|
|
|
|
|
|
$availible = array();
|
|
|
|
$f = fopen(EGW_SERVER_ROOT.'/setup/lang/languages','rb');
|
|
|
|
while($line = fgets($f,200))
|
|
|
|
{
|
|
|
|
list($id,$name) = explode("\t",$line);
|
|
|
|
$availible[] = trim($id);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
fclose($f);
|
|
|
|
$availible = "('".implode("','",$availible)."')";
|
2009-04-20 13:59:39 +02:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
// this shows first the installed, then the available and then the rest
|
2009-04-20 13:59:39 +02:00
|
|
|
foreach(self::$db->select(self::LANGUAGES_TABLE,array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'lang_id','lang_name',
|
|
|
|
"CASE WHEN lang_id IN $availible THEN 1 ELSE 0 END AS availible",
|
|
|
|
),"lang_id NOT IN ('".implode("','",array_keys($languages))."')",__LINE__,__FILE__,false,' ORDER BY availible DESC,lang_name') as $row)
|
|
|
|
{
|
|
|
|
$languages[$row['lang_id']] = $row['lang_name'];
|
|
|
|
}
|
|
|
|
return $languages;
|
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* returns a list of installed charsets
|
|
|
|
*
|
|
|
|
* @return array with charset as key and comma-separated list of langs useing the charset as data
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function get_installed_charsets()
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
static $charsets;
|
2008-03-15 16:30:15 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!isset($charsets))
|
|
|
|
{
|
|
|
|
$charsets = array(
|
|
|
|
'utf-8' => lang('all languages'),
|
2008-03-15 16:30:15 +01:00
|
|
|
'iso-8859-1' => 'Western european',
|
|
|
|
'iso-8859-2' => 'Eastern european',
|
|
|
|
'iso-8859-7' => 'Greek',
|
|
|
|
'euc-jp' => 'Japanese',
|
|
|
|
'euc-kr' => 'Korean',
|
2009-04-20 13:59:39 +02:00
|
|
|
'koi8-r' => 'Russian',
|
|
|
|
'windows-1251' => 'Bulgarian',
|
|
|
|
);
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
return $charsets;
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* converts a string $data from charset $from to charset $to
|
|
|
|
*
|
|
|
|
* @param string/array $data string(s) to convert
|
|
|
|
* @param string/boolean $from charset $data is in or False if it should be detected
|
|
|
|
* @param string/boolean $to charset to convert to or False for the system-charset the converted string
|
2009-04-20 13:59:39 +02:00
|
|
|
* @param boolean $check_to_from=true internal to bypass all charset replacements
|
2008-03-15 16:30:15 +01:00
|
|
|
* @return string/array converted string(s) from $data
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function convert($data,$from=False,$to=False,$check_to_from=true)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if ($check_to_from)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if ($from) $from = strtolower($from);
|
|
|
|
|
|
|
|
if ($to) $to = strtolower($to);
|
|
|
|
|
|
|
|
if (!$from)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$from = self::$mbstring ? strtolower(mb_detect_encoding($data)) : 'iso-8859-1';
|
|
|
|
if($from == 'ascii')
|
|
|
|
{
|
|
|
|
$from = 'iso-8859-1';
|
|
|
|
}
|
|
|
|
//echo "<p>autodetected charset of '$data' = '$from'</p>\n";
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
php does not seem to support gb2312
|
|
|
|
but seems to be able to decode it as EUC-CN
|
|
|
|
*/
|
|
|
|
switch($from)
|
|
|
|
{
|
|
|
|
case 'gb2312':
|
|
|
|
case 'gb18030':
|
|
|
|
$from = 'EUC-CN';
|
|
|
|
break;
|
|
|
|
case 'us-ascii':
|
|
|
|
case 'macroman':
|
|
|
|
case 'iso8859-1':
|
|
|
|
case 'windows-1258':
|
|
|
|
case 'windows-1252':
|
|
|
|
$from = 'iso-8859-1';
|
|
|
|
break;
|
|
|
|
case 'windows-1250':
|
|
|
|
$from = 'iso-8859-2';
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!$to)
|
|
|
|
{
|
|
|
|
$to = self::charset();
|
|
|
|
}
|
|
|
|
if ($from == $to || !$from || !$to || !$data)
|
|
|
|
{
|
|
|
|
return $data;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
if (is_array($data))
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
foreach($data as $key => $str)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$ret[$key] = self::convert($str,$from,$to,false); // false = bypass the above checks, as they are already done
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
return $ret;
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
if ($from == 'iso-8859-1' && $to == 'utf-8')
|
|
|
|
{
|
|
|
|
return utf8_encode($data);
|
|
|
|
}
|
|
|
|
if ($to == 'iso-8859-1' && $from == 'utf-8')
|
|
|
|
{
|
|
|
|
return utf8_decode($data);
|
|
|
|
}
|
2009-04-22 06:33:12 +02:00
|
|
|
if (self::$mbstring && ($data = @mb_convert_encoding($data,$to,$from)) != '')
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
return $data;
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
if (function_exists('iconv'))
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
|
|
|
// iconv can not convert from/to utf7-imap
|
2009-04-20 13:59:39 +02:00
|
|
|
if ($to == 'utf7-imap' && function_exists(imap_utf7_encode))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$convertedData = iconv($from, 'iso-8859-1', $data);
|
|
|
|
$convertedData = imap_utf7_encode($convertedData);
|
2009-04-20 13:59:39 +02:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
return $convertedData;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
if ($from == 'utf7-imap' && function_exists(imap_utf7_decode))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$convertedData = imap_utf7_decode($data);
|
|
|
|
$convertedData = iconv('iso-8859-1', $to, $convertedData);
|
|
|
|
|
|
|
|
return $convertedData;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
|
|
|
|
// the following is to workaround patch #962307
|
2009-04-20 13:59:39 +02:00
|
|
|
// if using EUC-CN, for iconv it strickly follow GB2312 and fail
|
|
|
|
// in an email on the first Traditional/Japanese/Korean character,
|
|
|
|
// but in reality when people send mails in GB2312, UMA mostly use
|
2008-03-15 16:30:15 +01:00
|
|
|
// extended GB13000/GB18030 which allow T/Jap/Korean characters.
|
2009-04-20 13:59:39 +02:00
|
|
|
if($from == 'EUC-CN')
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$from = 'gb18030';
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
if (($convertedData = iconv($from,$to,$data)))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
return $convertedData;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
return $data;
|
|
|
|
}
|
2007-02-14 12:44:01 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
/**
|
|
|
|
* rejected lines from install_langs()
|
|
|
|
*
|
|
|
|
* @var array
|
|
|
|
*/
|
|
|
|
static $line_rejected = array();
|
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* installs translations for the selected langs into the database
|
|
|
|
*
|
|
|
|
* @param array $langs langs to install (as data NOT keys (!))
|
|
|
|
* @param string $upgrademethod='dumpold' 'dumpold' (recommended & fastest), 'addonlynew' languages, 'addmissing' phrases
|
|
|
|
* @param string/boolean $only_app=false app-name to install only one app or default false for all
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function install_langs($langs,$upgrademethod='dumpold',$only_app=False)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-21 15:26:40 +02:00
|
|
|
if (is_null(self::$db)) self::init(false);
|
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
@set_time_limit(0); // we might need some time
|
|
|
|
//echo "<p>translation_sql::install_langs(".print_r($langs,true).",'$upgrademthod','$only_app')</p>\n";
|
|
|
|
if (!isset($GLOBALS['egw_info']['server']) && $upgrademethod != 'dumpold')
|
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if (($ctimes = self::$db->select(config::TABLE,'config_value',array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'config_app' => 'phpgwapi',
|
|
|
|
'config_name' => 'lang_ctimes',
|
2009-04-20 13:59:39 +02:00
|
|
|
),__LINE__,__FILE__)->fetchColumn()))
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['server']['lang_ctimes'] = unserialize(stripslashes($ctimes));
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
if (!is_array($langs) || !count($langs))
|
|
|
|
{
|
|
|
|
return;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$db->transaction_begin();
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
if ($upgrademethod == 'dumpold')
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
// dont delete the custom main- & loginscreen messages every time
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$db->delete(self::LANG_TABLE,array("app_name!='mainscreen'","app_name!='loginscreen'"),__LINE__,__FILE__);
|
2008-03-15 16:30:15 +01:00
|
|
|
//echo '<br>Test: dumpold';
|
|
|
|
$GLOBALS['egw_info']['server']['lang_ctimes'] = array();
|
|
|
|
}
|
|
|
|
foreach($langs as $lang)
|
|
|
|
{
|
|
|
|
//echo '<br>Working on: ' . $lang;
|
|
|
|
$addlang = False;
|
|
|
|
if ($upgrademethod == 'addonlynew')
|
|
|
|
{
|
|
|
|
//echo "<br>Test: addonlynew - select count(*) from egw_lang where lang='".$lang."'";
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!self::$db->select(self::LANG_TABLE,'COUNT(*)',array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'lang' => $lang,
|
2009-04-20 13:59:39 +02:00
|
|
|
),__LINE__,__FILE__)->fetchColumn())
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
//echo '<br>Test: addonlynew - True';
|
|
|
|
$addlang = True;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
if ($addlang && $upgrademethod == 'addonlynew' || $upgrademethod != 'addonlynew')
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
//echo '<br>Test: loop above file()';
|
|
|
|
if (!is_object($GLOBALS['egw_setup']))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$GLOBALS['egw_setup'] =& CreateObject('setup.setup');
|
2009-04-20 13:59:39 +02:00
|
|
|
$GLOBALS['egw_setup']->db = clone(self::$db);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
$setup_info = $GLOBALS['egw_setup']->detection->get_versions();
|
|
|
|
$setup_info = $GLOBALS['egw_setup']->detection->get_db_versions($setup_info);
|
|
|
|
$raw = array();
|
|
|
|
$apps = $only_app ? array($only_app) : array_keys($setup_info);
|
|
|
|
// Visit each app/setup dir, look for a egw_lang file
|
|
|
|
foreach($apps as $app)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$appfile = EGW_SERVER_ROOT . SEP . $app . SEP . 'setup' . SEP . self::LANGFILE_PREFIX . strtolower($lang) . '.lang';
|
|
|
|
$old_appfile = EGW_SERVER_ROOT . SEP . $app . SEP . 'setup' . SEP . self::OLD_LANGFILE_PREFIX . strtolower($lang) . '.lang';
|
2008-03-15 16:30:15 +01:00
|
|
|
//echo '<br>Checking in: ' . $app;
|
|
|
|
if($GLOBALS['egw_setup']->app_registered($app) && (file_exists($appfile) || file_exists($appfile=$old_appfile)))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
//echo '<br>Including: ' . $appfile;
|
|
|
|
$lines = file($appfile);
|
|
|
|
foreach($lines as $line)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
// explode with "\t" and removing "\n" with str_replace, needed to work with mbstring.overload=7
|
|
|
|
list($message_id,$app_name,,$content) = $_f_buffer = explode("\t",$line);
|
|
|
|
$content=str_replace(array("\n","\r"),'',$content);
|
|
|
|
if( count($_f_buffer) != 4 )
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$line_display = str_replace(array("\t","\n"),
|
|
|
|
array("<font color='red'><b>\\t</b></font>","<font color='red'><b>\\n</b></font>"), $line);
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$line_rejected[] = array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'appfile' => $appfile,
|
|
|
|
'line' => $line_display,
|
|
|
|
);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
$message_id = substr(strtolower(chop($message_id)),0,self::MAX_MESSAGE_ID_LENGTH);
|
2008-03-15 16:30:15 +01:00
|
|
|
$app_name = chop($app_name);
|
|
|
|
$raw[$app_name][$message_id] = $content;
|
|
|
|
}
|
|
|
|
if ($GLOBALS['egw_info']['server']['lang_ctimes'] && !is_array($GLOBALS['egw_info']['server']['lang_ctimes']))
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['server']['lang_ctimes'] = unserialize($GLOBALS['egw_info']['server']['lang_ctimes']);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
$GLOBALS['egw_info']['server']['lang_ctimes'][$lang][$app] = filemtime($appfile);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
$charset = strtolower(@$raw['common']['charset'] ? $raw['common']['charset'] : self::charset($lang));
|
|
|
|
//echo "<p>lang='$lang', charset='$charset', system_charset='self::$system_charset')</p>\n";
|
2008-03-15 16:30:15 +01:00
|
|
|
//echo "<p>raw($lang)=<pre>".print_r($raw,True)."</pre>\n";
|
|
|
|
foreach($raw as $app_name => $ids)
|
|
|
|
{
|
|
|
|
foreach($ids as $message_id => $content)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
if (self::$system_charset)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$content = self::convert($content,$charset,self::$system_charset);
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
$addit = False;
|
|
|
|
//echo '<br>APPNAME:' . $app_name . ' PHRASE:' . $message_id;
|
|
|
|
if ($upgrademethod == 'addmissing')
|
|
|
|
{
|
|
|
|
//echo '<br>Test: addmissing';
|
2009-04-20 13:59:39 +02:00
|
|
|
$rs = self::$db->select(self::LANG_TABLE,"content,CASE WHEN app_name IN ('common') THEN 1 ELSE 0 END AS in_api",array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'message_id' => $message_id,
|
|
|
|
'lang' => $lang,
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$db->expression(self::LANG_TABLE,'(',array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'app_name' => $app_name
|
|
|
|
)," OR app_name='common') ORDER BY in_api DESC")),__LINE__,__FILE__);
|
|
|
|
|
|
|
|
if (!($row = $rs->fetch()))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$addit = True;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
else
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
if ($row['in_api']) // same phrase is in the api
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$addit = $row['content'] != $content; // only add if not identical
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
$row2 = $rs->fetch();
|
|
|
|
if (!$row['in_api'] || $app_name=='common' || $row2) // phrase is alread in the db
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$addit = $content != ($row2 ? $row2['content'] : $row['content']);
|
|
|
|
if ($addit) // if we want to add/update it ==> delete it
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$db->delete(self::LANG_TABLE,array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'message_id' => $message_id,
|
|
|
|
'lang' => $lang,
|
|
|
|
'app_name' => $app_name,
|
|
|
|
),__LINE__,__FILE__);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
if ($addit || $upgrademethod == 'addonlynew' || $upgrademethod == 'dumpold')
|
|
|
|
{
|
|
|
|
if($message_id && $content)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
// echo "<br>adding - insert into egw_lang values ('$message_id','$app_name','$lang','$content')";
|
2009-04-20 13:59:39 +02:00
|
|
|
$result = self::$db->insert(self::LANG_TABLE,array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'message_id' => $message_id,
|
|
|
|
'app_name' => $app_name,
|
|
|
|
'lang' => $lang,
|
|
|
|
'content' => $content,
|
|
|
|
),False,__LINE__,__FILE__);
|
|
|
|
|
|
|
|
if ((int)$result <= 0)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
echo "<br>Error inserting record: egw_lang values ('$message_id','$app_name','$lang','$content')";
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
// delete the cache
|
|
|
|
egw_cache::unsetTree(__CLASS__,$app_name.':'.$lang);
|
|
|
|
//error_log(__METHOD__.'('.array2string($langs).",$upgrademethod,$only_app) deleted cache for app=$app_name and lang=$lang.");
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-23 11:47:22 +02:00
|
|
|
// delete the cache
|
|
|
|
egw_cache::unsetInstance(__CLASS__,'installed_langs');
|
|
|
|
egw_cache::unsetInstance(__CLASS__,'list_langs');
|
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$db->transaction_commit();
|
2008-03-15 16:30:15 +01:00
|
|
|
|
|
|
|
// update the ctimes of the installed langsfiles for the autoloading of the lang-files
|
|
|
|
//
|
|
|
|
config::save_value('lang_ctimes',$GLOBALS['egw_info']['server']['lang_ctimes'],'phpgwapi');
|
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* re-loads all (!) langfiles if one langfile for the an app and the language of the user has changed
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function autoload_changed_langfiles()
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
|
|
|
//echo "<h1>check_langs()</h1>\n";
|
|
|
|
if ($GLOBALS['egw_info']['server']['lang_ctimes'] && !is_array($GLOBALS['egw_info']['server']['lang_ctimes']))
|
|
|
|
{
|
|
|
|
$GLOBALS['egw_info']['server']['lang_ctimes'] = unserialize($GLOBALS['egw_info']['server']['lang_ctimes']);
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
//_debug_array($GLOBALS['egw_info']['server']['lang_ctimes']);
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
$lang = $GLOBALS['egw_info']['user']['preferences']['common']['lang'];
|
|
|
|
$apps = $GLOBALS['egw_info']['user']['apps'];
|
|
|
|
$apps['phpgwapi'] = True; // check the api too
|
|
|
|
foreach($apps as $app => $data)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$fname = EGW_SERVER_ROOT . "/$app/setup/" . self::LANGFILE_PREFIX . "$lang.lang";
|
|
|
|
$old_fname = EGW_SERVER_ROOT . "/$app/setup/" . self::OLD_LANGFILE_PREFIX . "$lang.lang";
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
if (file_exists($fname) || file_exists($fname = $old_fname))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$ctime = filectime($fname);
|
|
|
|
/* This is done to avoid string offset error at least in php5 */
|
|
|
|
$tmp = $GLOBALS['egw_info']['server']['lang_ctimes'][$lang];
|
|
|
|
$ltime = (int)$tmp[$app];
|
|
|
|
unset($tmp);
|
|
|
|
//echo "checking lang='$lang', app='$app', ctime='$ctime', ltime='$ltime'<br>\n";
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
if ($ctime != $ltime)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
// update all langs
|
2009-04-20 13:59:39 +02:00
|
|
|
$installed = self::get_installed_langs();
|
2008-03-15 16:30:15 +01:00
|
|
|
//echo "<p>install_langs(".print_r($installed,True).")</p>\n";
|
2009-04-20 13:59:39 +02:00
|
|
|
self::install_langs($installed ? array_keys($installed) : array());
|
2008-03-15 16:30:15 +01:00
|
|
|
break;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/* Following functions are called for app (un)install */
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* gets array of installed languages, e.g. array('de','en')
|
|
|
|
*
|
|
|
|
* @param boolean $DEBUG=false debug messages or not, default not
|
|
|
|
* @return array with installed langs
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function get_langs($DEBUG=False)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
|
|
|
if($DEBUG)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
echo '<br>get_langs(): checking db...' . "\n";
|
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
if (!self::$langs)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::get_installed_langs();
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
return self::$langs ? array_keys(self::$langs) : array();
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* delete all lang entries for an application, return True if langs were found
|
|
|
|
*
|
|
|
|
* @param $appname app_name whose translations you want to delete
|
|
|
|
* @param boolean $DEBUG=false debug messages or not, default not
|
|
|
|
* @return boolean true if $appname had translations installed, false otherwise
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function drop_langs($appname,$DEBUG=False)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
|
|
|
if($DEBUG)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
echo '<br>drop_langs(): Working on: ' . $appname;
|
|
|
|
}
|
2009-04-21 15:26:40 +02:00
|
|
|
if (is_null(self::$db)) self::init(false);
|
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
if (self::$db->select(self::LANG_TABLE,'COUNT(*)',array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'app_name' => $appname
|
2009-04-20 13:59:39 +02:00
|
|
|
),__LINE__,__FILE__)->fetchColumn())
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$db->delete(self::LANG_TABLE,array(
|
2005-11-05 09:51:06 +01:00
|
|
|
'app_name' => $appname
|
|
|
|
),__LINE__,__FILE__);
|
2008-03-15 16:30:15 +01:00
|
|
|
return True;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
return False;
|
|
|
|
}
|
2005-11-05 09:51:06 +01:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* process an application's lang files, calling get_langs() to see what langs the admin installed already
|
|
|
|
*
|
|
|
|
* @param string $appname app_name of application to process
|
|
|
|
* @param boolean $DEBUG=false debug messages or not, default not
|
|
|
|
* @param array/boolean $force_langs=false array with langs to install anyway (beside the allready installed ones), or false for none
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function add_langs($appname,$DEBUG=False,$force_langs=False)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$langs = self::get_langs($DEBUG);
|
2008-03-15 16:30:15 +01:00
|
|
|
if(is_array($force_langs))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
foreach($force_langs as $lang)
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
if (!in_array($lang,$langs))
|
2005-11-05 09:51:06 +01:00
|
|
|
{
|
2008-03-15 16:30:15 +01:00
|
|
|
$langs[] = $lang;
|
2005-11-05 09:51:06 +01:00
|
|
|
}
|
|
|
|
}
|
2005-11-19 21:08:45 +01:00
|
|
|
}
|
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
if($DEBUG)
|
|
|
|
{
|
|
|
|
echo '<br>add_langs(): chose these langs: ';
|
|
|
|
_debug_array($langs);
|
2005-11-19 21:08:45 +01:00
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
self::install_langs($langs,'addmissing',$appname);
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* insert/update one phrase in the lang-table
|
|
|
|
*
|
|
|
|
* @param string $lang
|
2009-04-28 17:56:04 +02:00
|
|
|
* @param string $app
|
2008-03-15 16:30:15 +01:00
|
|
|
* @param string $message_id
|
|
|
|
* @param string $content
|
|
|
|
*/
|
2009-04-28 17:56:04 +02:00
|
|
|
static function write($lang,$app,$message_id,$content)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
self::$db->insert(self::LANG_TABLE,array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'content' => $content,
|
|
|
|
),array(
|
|
|
|
'lang' => $lang,
|
2009-04-28 17:56:04 +02:00
|
|
|
'app_name' => $app,
|
2008-03-15 16:30:15 +01:00
|
|
|
'message_id' => $message_id,
|
|
|
|
),__LINE__,__FILE__);
|
2009-04-28 17:56:04 +02:00
|
|
|
|
|
|
|
// invalidate the cache
|
|
|
|
egw_cache::unsetCache(in_array($app,self::$instance_specific_translations) ? egw_cache::INSTANCE : egw_cache::TREE,__CLASS__,$app.':'.$lang);
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* read one phrase from the lang-table
|
|
|
|
*
|
|
|
|
* @param string $lang
|
|
|
|
* @param string $app_name
|
|
|
|
* @param string $message_id
|
|
|
|
* @return string/boolean content or false if not found
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function read($lang,$app_name,$message_id)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
return self::$db->select(self::LANG_TABLE,'content',array(
|
2008-03-15 16:30:15 +01:00
|
|
|
'lang' => $lang,
|
|
|
|
'app_name' => $app_name,
|
|
|
|
'message_id' => $message_id,
|
2009-04-20 13:59:39 +02:00
|
|
|
),__LINE__,__FILE__)->fetchColumn();
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|
2009-04-20 13:59:39 +02:00
|
|
|
|
2008-03-15 16:30:15 +01:00
|
|
|
/**
|
|
|
|
* Return the message_id of a given translation
|
|
|
|
*
|
|
|
|
* @param string $translation
|
|
|
|
* @param string $app='' default check all apps
|
|
|
|
* @param string $lang='' default check all langs
|
|
|
|
* @return string
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function get_message_id($translation,$app=null,$lang=null)
|
2008-03-15 16:30:15 +01:00
|
|
|
{
|
2009-04-20 13:59:39 +02:00
|
|
|
$like = self::$db->Type == 'pgsql' ? 'ILIKE' : 'LIKE';
|
|
|
|
$where = array('content '.$like.' '.self::$db->quote($translation)); // like to be case-insensitive
|
2008-03-15 16:30:15 +01:00
|
|
|
if ($app) $where['app_name'] = $app;
|
|
|
|
if ($lang) $where['lang'] = $lang;
|
2009-04-20 13:59:39 +02:00
|
|
|
|
|
|
|
return self::$db->select(self::LANG_TABLE,'message_id',$where,__LINE__,__FILE__)->fetchColumn();
|
2001-08-31 10:45:44 +02:00
|
|
|
}
|
2009-04-01 17:20:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the decoded string meeting some additional requirements for mailheaders
|
|
|
|
*
|
|
|
|
* @param string $_string -> part of an mailheader
|
|
|
|
* @param string $displayCharset the charset parameter specifies the character set to represent the result by (if iconv_mime_decode is to be used)
|
|
|
|
* @return string
|
|
|
|
*/
|
2009-04-20 13:59:39 +02:00
|
|
|
static function decodeMailHeader($_string, $displayCharset='utf-8')
|
2009-04-01 17:20:32 +02:00
|
|
|
{
|
2009-04-03 22:12:35 +02:00
|
|
|
//error_log(__FILE__.','.__METHOD__.':'."called with $_string and CHARSET $displayCharset");
|
2009-04-20 13:59:39 +02:00
|
|
|
if(function_exists(imap_mime_header_decode))
|
|
|
|
{
|
2009-04-01 17:20:32 +02:00
|
|
|
$newString = '';
|
|
|
|
|
|
|
|
$string = preg_replace('/\?=\s+=\?/', '?= =?', $_string);
|
|
|
|
|
|
|
|
$elements=imap_mime_header_decode($string);
|
|
|
|
|
2009-04-20 13:59:39 +02:00
|
|
|
foreach((array)$elements as $element)
|
|
|
|
{
|
|
|
|
if ($element->charset == 'default') $element->charset = 'iso-8859-1';
|
|
|
|
|
2009-04-01 17:20:32 +02:00
|
|
|
$newString .= self::convert($element->text,$element->charset);
|
|
|
|
}
|
|
|
|
return preg_replace('/([\000-\012\015\016\020-\037\075])/','',$newString);
|
2009-04-20 13:59:39 +02:00
|
|
|
}
|
|
|
|
elseif(function_exists(mb_decode_mimeheader))
|
|
|
|
{
|
2009-04-01 17:20:32 +02:00
|
|
|
$string = $_string;
|
2009-04-20 13:59:39 +02:00
|
|
|
if(preg_match_all('/=\?.*\?Q\?.*\?=/iU', $string, $matches))
|
|
|
|
{
|
|
|
|
foreach($matches[0] as $match)
|
|
|
|
{
|
2009-04-01 17:20:32 +02:00
|
|
|
$fixedMatch = str_replace('_', ' ', $match);
|
|
|
|
$string = str_replace($match, $fixedMatch, $string);
|
|
|
|
}
|
|
|
|
$string = str_replace('=?ISO8859-','=?ISO-8859-',$string);
|
|
|
|
$string = str_replace('=?windows-1258','=?ISO-8859-1',$string);
|
|
|
|
}
|
|
|
|
$string = mb_decode_mimeheader($string);
|
|
|
|
return preg_replace('/([\000-\012\015\016\020-\037\075])/','',$string);
|
2009-04-20 13:59:39 +02:00
|
|
|
}
|
|
|
|
elseif(function_exists(iconv_mime_decode))
|
|
|
|
{
|
2009-04-01 17:20:32 +02:00
|
|
|
// continue decoding also if an error occurs
|
|
|
|
$string = @iconv_mime_decode($_string, 2, $displayCharset);
|
|
|
|
return preg_replace('/([\000-\012\015\016\020-\037\075])/','',$string);
|
|
|
|
}
|
|
|
|
|
|
|
|
// no decoding function available
|
|
|
|
return preg_replace('/([\000-\012\015\016\020-\037\075])/','',$_string);
|
|
|
|
}
|
2008-03-15 16:30:15 +01:00
|
|
|
}
|