2011-03-11 00:18:29 +01:00
|
|
|
<?php
|
2011-05-24 02:18:36 +02:00
|
|
|
|
|
|
|
/**
|
2016-10-03 21:12:47 +02:00
|
|
|
* @brief translation support
|
2011-05-24 02:18:36 +02:00
|
|
|
*
|
|
|
|
* Get the language setting directly from system variables, bypassing get_config()
|
|
|
|
* as database may not yet be configured.
|
2015-11-08 14:23:49 +01:00
|
|
|
*
|
2011-05-24 02:18:36 +02:00
|
|
|
* If possible, we use the value from the browser.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-10-03 21:12:47 +02:00
|
|
|
require_once("include/dba.php");
|
2011-05-24 02:18:36 +02:00
|
|
|
|
2012-05-13 13:52:29 +02:00
|
|
|
if(! function_exists('get_browser_language')) {
|
2016-10-03 21:12:47 +02:00
|
|
|
/**
|
|
|
|
* @brief get the prefered language from the HTTP_ACCEPT_LANGUAGE header
|
|
|
|
*/
|
2012-05-13 13:52:29 +02:00
|
|
|
function get_browser_language() {
|
2011-05-24 02:18:36 +02:00
|
|
|
|
2012-05-13 13:52:29 +02:00
|
|
|
if (x($_SERVER,'HTTP_ACCEPT_LANGUAGE')) {
|
2015-11-08 14:23:49 +01:00
|
|
|
// break up string into pieces (languages and q factors)
|
|
|
|
preg_match_all('/([a-z]{1,8}(-[a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/i',
|
2011-05-24 02:18:36 +02:00
|
|
|
$_SERVER['HTTP_ACCEPT_LANGUAGE'], $lang_parse);
|
|
|
|
|
2016-10-03 21:12:47 +02:00
|
|
|
$lang_list = [];
|
2015-11-08 14:23:49 +01:00
|
|
|
if (count($lang_parse[1])) {
|
2016-10-03 21:12:47 +02:00
|
|
|
// go through the list of prefered languages and add a generic language
|
|
|
|
// for sub-linguas (e.g. de-ch will add de) if not already in array
|
2016-10-02 09:26:35 +02:00
|
|
|
for ($i=0; $i<count($lang_parse[1]); $i++) {
|
2016-10-03 21:12:47 +02:00
|
|
|
$lang_list[] = strtolower($lang_parse[1][$i]);
|
|
|
|
if ( strlen($lang_parse[1][$i])>3 ) {
|
|
|
|
$dashpos = strpos($lang_parse[1][$i], '-');
|
|
|
|
if (! in_array(substr($lang_parse[1][$i], 0, $dashpos), $lang_list ) ) {
|
|
|
|
$lang_list[] = strtolower(substr($lang_parse[1][$i], 0, $dashpos));
|
2016-10-02 09:26:35 +02:00
|
|
|
}
|
|
|
|
}
|
2015-11-08 14:23:49 +01:00
|
|
|
}
|
|
|
|
}
|
2011-05-24 02:18:36 +02:00
|
|
|
}
|
|
|
|
|
2016-10-03 21:12:47 +02:00
|
|
|
// check if we have translations for the preferred languages and pick the 1st that has
|
|
|
|
for ($i=0; $i<count($lang_list); $i++) {
|
|
|
|
$lang = $lang_list[$i];
|
|
|
|
if(file_exists("view/lang/$lang") && is_dir("view/lang/$lang")) {
|
|
|
|
$preferred = $lang;
|
|
|
|
break;
|
2011-05-24 02:18:36 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if(isset($preferred))
|
|
|
|
return $preferred;
|
|
|
|
|
2016-10-03 21:12:47 +02:00
|
|
|
// in case none matches, get the system wide configured language, or fall back to English
|
2012-04-17 13:33:50 +02:00
|
|
|
$a = get_app();
|
2011-05-24 02:18:36 +02:00
|
|
|
return ((isset($a->config['system']['language'])) ? $a->config['system']['language'] : 'en');
|
|
|
|
}}
|
|
|
|
|
|
|
|
|
2011-05-24 05:30:37 +02:00
|
|
|
function push_lang($language) {
|
|
|
|
global $lang, $a;
|
|
|
|
|
|
|
|
$a->langsave = $lang;
|
|
|
|
|
2011-05-24 05:37:36 +02:00
|
|
|
if($language === $lang)
|
|
|
|
return;
|
|
|
|
|
2011-05-24 05:30:37 +02:00
|
|
|
if(isset($a->strings) && count($a->strings)) {
|
|
|
|
$a->stringsave = $a->strings;
|
|
|
|
}
|
|
|
|
$a->strings = array();
|
|
|
|
load_translation_table($language);
|
|
|
|
$lang = $language;
|
|
|
|
}
|
|
|
|
|
|
|
|
function pop_lang() {
|
|
|
|
global $lang, $a;
|
2011-05-24 05:37:36 +02:00
|
|
|
|
|
|
|
if($lang === $a->langsave)
|
|
|
|
return;
|
|
|
|
|
2011-05-24 05:30:37 +02:00
|
|
|
if(isset($a->stringsave))
|
|
|
|
$a->strings = $a->stringsave;
|
|
|
|
else
|
|
|
|
$a->strings = array();
|
|
|
|
|
|
|
|
$lang = $a->langsave;
|
|
|
|
}
|
|
|
|
|
2011-05-24 02:18:36 +02:00
|
|
|
|
2013-07-11 09:34:49 +02:00
|
|
|
// l
|
2011-03-11 00:18:29 +01:00
|
|
|
|
|
|
|
if(! function_exists('load_translation_table')) {
|
2013-07-11 09:34:49 +02:00
|
|
|
/**
|
|
|
|
* load string translation table for alternate language
|
|
|
|
*
|
|
|
|
* first plugin strings are loaded, then globals
|
2015-11-08 14:23:49 +01:00
|
|
|
*
|
2013-07-11 09:34:49 +02:00
|
|
|
* @param string $lang language code to load
|
|
|
|
*/
|
2011-03-11 00:18:29 +01:00
|
|
|
function load_translation_table($lang) {
|
|
|
|
global $a;
|
2013-07-11 09:34:49 +02:00
|
|
|
|
2014-06-18 21:18:50 +02:00
|
|
|
$a->strings = array();
|
2013-03-03 00:46:54 +01:00
|
|
|
// load enabled plugins strings
|
|
|
|
$plugins = q("SELECT name FROM addon WHERE installed=1;");
|
|
|
|
if ($plugins!==false) {
|
|
|
|
foreach($plugins as $p) {
|
|
|
|
$name = $p['name'];
|
|
|
|
if(file_exists("addon/$name/lang/$lang/strings.php")) {
|
|
|
|
include("addon/$name/lang/$lang/strings.php");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-11-08 14:23:49 +01:00
|
|
|
|
2016-09-30 16:46:56 +02:00
|
|
|
if(file_exists("view/lang/$lang/strings.php")) {
|
|
|
|
include("view/lang/$lang/strings.php");
|
2013-07-11 09:34:49 +02:00
|
|
|
}
|
|
|
|
|
2011-03-11 00:18:29 +01:00
|
|
|
}}
|
|
|
|
|
|
|
|
// translate string if translation exists
|
|
|
|
|
|
|
|
if(! function_exists('t')) {
|
|
|
|
function t($s) {
|
|
|
|
|
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
if(x($a->strings,$s)) {
|
|
|
|
$t = $a->strings[$s];
|
|
|
|
return is_array($t)?$t[0]:$t;
|
|
|
|
}
|
|
|
|
return $s;
|
|
|
|
}}
|
|
|
|
|
|
|
|
if(! function_exists('tt')){
|
|
|
|
function tt($singular, $plural, $count){
|
2011-09-21 16:09:37 +02:00
|
|
|
global $lang;
|
2011-03-11 00:18:29 +01:00
|
|
|
$a = get_app();
|
|
|
|
|
|
|
|
if(x($a->strings,$singular)) {
|
|
|
|
$t = $a->strings[$singular];
|
2011-09-21 16:09:37 +02:00
|
|
|
$f = 'string_plural_select_' . str_replace('-','_',$lang);
|
2011-09-22 00:37:16 +02:00
|
|
|
if(! function_exists($f))
|
|
|
|
$f = 'string_plural_select_default';
|
2011-09-21 16:09:37 +02:00
|
|
|
$k = $f($count);
|
2011-03-11 00:18:29 +01:00
|
|
|
return is_array($t)?$t[$k]:$t;
|
|
|
|
}
|
2015-11-08 14:23:49 +01:00
|
|
|
|
2011-03-11 00:18:29 +01:00
|
|
|
if ($count!=1){
|
|
|
|
return $plural;
|
|
|
|
} else {
|
|
|
|
return $singular;
|
|
|
|
}
|
2011-09-22 00:37:16 +02:00
|
|
|
}}
|
|
|
|
|
2015-11-08 14:23:49 +01:00
|
|
|
// provide a fallback which will not collide with
|
|
|
|
// a function defined in any language file
|
2011-09-22 00:37:16 +02:00
|
|
|
|
|
|
|
if(! function_exists('string_plural_select_default')) {
|
|
|
|
function string_plural_select_default($n) {
|
|
|
|
return ($n != 1);
|
|
|
|
}}
|
|
|
|
|
2015-11-08 14:23:49 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Return installed languages as associative array
|
|
|
|
* [
|
|
|
|
* lang => lang,
|
|
|
|
* ...
|
|
|
|
* ]
|
|
|
|
*/
|
|
|
|
function get_avaiable_languages() {
|
|
|
|
$lang_choices = array();
|
2016-09-30 16:46:56 +02:00
|
|
|
$langs = glob('view/lang/*/strings.php'); /**/
|
2015-11-08 14:23:49 +01:00
|
|
|
|
|
|
|
if(is_array($langs) && count($langs)) {
|
2016-09-30 16:46:56 +02:00
|
|
|
if(! in_array('view/lang/en/strings.php',$langs))
|
|
|
|
$langs[] = 'view/lang/en/';
|
2015-11-08 14:23:49 +01:00
|
|
|
asort($langs);
|
|
|
|
foreach($langs as $l) {
|
|
|
|
$t = explode("/",$l);
|
2016-10-01 16:07:23 +02:00
|
|
|
$lang_choices[$t[2]] = $t[2];
|
2015-11-08 14:23:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return $lang_choices;
|
|
|
|
}
|