X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FCore%2FL10n.php;h=9fec8735f005851187c4d5634d6c02c9dfc253cb;hb=cb80108957f16011b5b7b1b8961da8cbd78d60c9;hp=7e079ea6d7f1abb8d0fb37d2eca0eb97cd31ce5a;hpb=45f8000ba5990be37f70fe2e5226b0971793bb77;p=friendica.git diff --git a/src/Core/L10n.php b/src/Core/L10n.php index 7e079ea6d7..9fec8735f0 100644 --- a/src/Core/L10n.php +++ b/src/Core/L10n.php @@ -1,162 +1,250 @@ 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)); - } - } - } - } - } + private $lang = ''; - // check if we have translations for the preferred languages and pick the 1st that has - foreach ($lang_list as $lang) { - if ($lang === 'en' || (file_exists("view/lang/$lang") && is_dir("view/lang/$lang"))) { - $preferred = $lang; - break; - } - } - if (isset($preferred)) { - return $preferred; - } + /** + * An array of translation strings whose key is the neutral english message. + * + * @var array + */ + private $strings = []; + + /** + * @var Database + */ + private $dba; - // in case none matches, get the system wide configured language, or fall back to English - return Config::get('system', 'language', 'en'); + /** + * @var LoggerInterface + */ + private $logger; + + public function __construct(IConfig $config, Database $dba, LoggerInterface $logger, ISession $session, array $server, array $get) + { + $this->dba = $dba; + $this->logger = $logger; + + $this->loadTranslationTable(L10n::detectLanguage($server, $get, $config->get('system', 'language', 'en'))); + $this->setSessionVariable($session); + $this->setLangFromSession($session); } /** - * @param string $language language + * Returns the current language code + * + * @return string Language code */ - public static function pushLang($language) + public function getCurrentLang() { - global $lang, $a; + return $this->lang; + } - $a->langsave = $lang; + /** + * Sets the language session variable + */ + private function setSessionVariable(ISession $session) + { + if ($session->get('authenticated') && !$session->get('language')) { + $session->set('language', $this->lang); + // we haven't loaded user data yet, but we need user language + if ($session->get('uid')) { + $user = $this->dba->selectFirst('user', ['language'], ['uid' => $_SESSION['uid']]); + if ($this->dba->isResult($user)) { + $session->set('language', $user['language']); + } + } + } - if ($language === $lang) { - return; + if (isset($_GET['lang'])) { + $session->set('language', $_GET['lang']); } + } - if (isset($a->strings) && count($a->strings)) { - $a->stringsave = $a->strings; + private function setLangFromSession(ISession $session) + { + if ($session->get('language') !== $this->lang) { + $this->loadTranslationTable($session->get('language')); } - $a->strings = []; - self::loadTranslationTable($language); - $lang = $language; } /** - * Pop language off the top of the stack + * Loads string translation table + * + * First addon strings are loaded, then globals + * + * Uses an App object shim since all the strings files refer to $a->strings + * + * @param string $lang language code to load + * + * @throws \Exception */ - public static function popLang() + private function loadTranslationTable($lang) { - global $lang, $a; + $lang = Strings::sanitizeFilePathItem($lang); - if ($lang === $a->langsave) { + // Don't override the language setting with empty languages + if (empty($lang)) { return; } - if (isset($a->stringsave)) { - $a->strings = $a->stringsave; - } else { - $a->strings = []; + $a = new \stdClass(); + $a->strings = []; + + // load enabled addons strings + $addons = $this->dba->select('addon', ['name'], ['installed' => true]); + while ($p = $this->dba->fetch($addons)) { + $name = Strings::sanitizeFilePathItem($p['name']); + if (file_exists(__DIR__ . "/../../addon/$name/lang/$lang/strings.php")) { + include __DIR__ . "/../../addon/$name/lang/$lang/strings.php"; + } + } + + if (file_exists(__DIR__ . "/../../view/lang/$lang/strings.php")) { + include __DIR__ . "/../../view/lang/$lang/strings.php"; } - $lang = $a->langsave; + $this->lang = $lang; + $this->strings = $a->strings; + + unset($a); } /** - * load string translation table for alternate language + * @brief Returns the preferred language from the HTTP_ACCEPT_LANGUAGE header * - * first addon strings are loaded, then globals + * @param string $sysLang The default fallback language + * @param array $server The $_SERVER array + * @param array $get The $_GET array * - * @param string $lang language code to load + * @return string The two-letter language code */ - public static function loadTranslationTable($lang) + public static function detectLanguage(array $server, array $get, string $sysLang = 'en') { - $a = get_app(); + $lang_variable = $server['HTTP_ACCEPT_LANGUAGE'] ?? null; - $a->strings = []; - // load enabled addons strings - $addons = dba::select('addon', ['name'], ['installed' => true]); - while ($p = dba::fetch($addons)) { - $name = $p['name']; - if (file_exists("addon/$name/lang/$lang/strings.php")) { - include("addon/$name/lang/$lang/strings.php"); - } + $acceptedLanguages = preg_split('/,\s*/', $lang_variable); + + if (empty($acceptedLanguages)) { + $acceptedLanguages = []; + } + + // Add get as absolute quality accepted language (except this language isn't valid) + if (!empty($get['lang'])) { + $acceptedLanguages[] = $get['lang']; } - if (file_exists("view/lang/$lang/strings.php")) { - include("view/lang/$lang/strings.php"); + // return the sys language in case there's nothing to do + if (empty($acceptedLanguages)) { + return $sysLang; } + + // Set the syslang as default fallback + $current_lang = $sysLang; + // start with quality zero (every guessed language is more acceptable ..) + $current_q = 0; + + foreach ($acceptedLanguages as $acceptedLanguage) { + $res = preg_match( + '/^([a-z]{1,8}(?:-[a-z]{1,8})*)(?:;\s*q=(0(?:\.[0-9]{1,3})?|1(?:\.0{1,3})?))?$/i', + $acceptedLanguage, + $matches + ); + + // Invalid language? -> skip + if (!$res) { + continue; + } + + // split language codes based on it's "-" + $lang_code = explode('-', $matches[1]); + + // determine the quality of the guess + if (isset($matches[2])) { + $lang_quality = (float)$matches[2]; + } else { + // fallback so without a quality parameter, it's probably the best + $lang_quality = 1; + } + + // loop through each part of the code-parts + while (count($lang_code)) { + // try to mix them so we can get double-code parts too + $match_lang = strtolower(join('-', $lang_code)); + if (file_exists(__DIR__ . "/../../view/lang/$match_lang") && + is_dir(__DIR__ . "/../../view/lang/$match_lang")) { + if ($lang_quality > $current_q) { + $current_lang = $match_lang; + $current_q = $lang_quality; + break; + } + } + + // remove the most right code-part + array_pop($lang_code); + } + } + + return $current_lang; } /** - * @brief Return the localized version of the provided string with optional string interpolation + * Return the localized version of the provided string with optional string interpolation * * This function takes a english string as parameter, and if a localized version * exists for the current language, substitutes it before performing an eventual * string interpolation (sprintf) with additional optional arguments. * * Usages: - * - t('This is an example') - * - t('URL %s returned no result', $url) - * - t('Current version: %s, new version: %s', $current_version, $new_version) + * - DI::l10n()->t('This is an example') + * - DI::l10n()->t('URL %s returned no result', $url) + * - DI::l10n()->t('Current version: %s, new version: %s', $current_version, $new_version) * * @param string $s + * @param array $vars Variables to interpolate in the translation string + * * @return string */ - public static function t($s) + public function t($s, ...$vars) { - $a = get_app(); + if (empty($s)) { + return ''; + } - if (x($a->strings, $s)) { - $t = $a->strings[$s]; + if (!empty($this->strings[$s])) { + $t = $this->strings[$s]; $s = is_array($t) ? $t[0] : $t; } - if (func_num_args() > 1) { - $args = array_slice(func_get_args(), 1); - $s = @vsprintf($s, $args); + + if (count($vars) > 0) { + $s = sprintf($s, ...$vars); } return $s; } /** - * @brief Return the localized version of a singular/plural string with optional string interpolation + * Return the localized version of a singular/plural string with optional string interpolation * * This function takes two english strings as parameters, singular and plural, as * well as a count. If a localized version exists for the current language, they @@ -165,33 +253,38 @@ class L10n * is performed using the count as parameter. * * Usages: - * - tt('Like', 'Likes', $count) - * - tt("%s user deleted", "%s users deleted", count($users)) + * - DI::l10n()->tt('Like', 'Likes', $count) + * - DI::l10n()->tt("%s user deleted", "%s users deleted", count($users)) * - * @global type $lang * @param string $singular * @param string $plural - * @param int $count + * @param int $count + * * @return string + * @throws \Exception */ - function tt($singular, $plural, $count) + public function tt(string $singular, string $plural, int $count) { - global $lang; - $a = get_app(); - - if (x($a->strings, $singular)) { - $t = $a->strings[$singular]; + if (!empty($this->strings[$singular])) { + $t = $this->strings[$singular]; if (is_array($t)) { - $plural_function = 'string_plural_select_' . str_replace('-', '_', $lang); + $plural_function = 'string_plural_select_' . str_replace('-', '_', $this->lang); if (function_exists($plural_function)) { - $plural_function = 'self::stringPluralSelectDefault'; + $i = $plural_function($count); + } else { + $i = $this->stringPluralSelectDefault($count); + } + + // for some languages there is only a single array item + if (!isset($t[$i])) { + $s = $t[0]; + } else { + $s = $t[$i]; } - $i = $plural_function($count); - $s = $t[$i]; } else { $s = $t; } - } elseif (self::stringPluralSelectDefault($count)) { + } elseif ($this->stringPluralSelectDefault($count)) { $s = $plural; } else { $s = $singular; @@ -204,16 +297,18 @@ class L10n /** * Provide a fallback which will not collide with a function defined in any language file + * + * @param int $n + * + * @return bool */ - private static function stringPluralSelectDefault($n) + private function stringPluralSelectDefault($n) { return $n != 1; } - - /** - * @brief Return installed languages codes as associative array + * Return installed languages codes as associative array * * Scans the view/lang directory for the existence of "strings.php" files, and * returns an alphabetical list of their folder names (@-char language codes). @@ -225,7 +320,7 @@ class L10n */ public static function getAvailableLanguages() { - $langs = []; + $langs = []; $strings_file_paths = glob('view/lang/*/strings.php'); if (is_array($strings_file_paths) && count($strings_file_paths)) { @@ -234,10 +329,96 @@ class L10n } asort($strings_file_paths); foreach ($strings_file_paths as $strings_file_path) { - $path_array = explode('/', $strings_file_path); + $path_array = explode('/', $strings_file_path); $langs[$path_array[2]] = $path_array[2]; } } return $langs; } + + /** + * Translate days and months names. + * + * @param string $s String with day or month name. + * + * @return string Translated string. + */ + public function getDay($s) + { + $ret = str_replace(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'], + [$this->t('Monday'), $this->t('Tuesday'), $this->t('Wednesday'), $this->t('Thursday'), $this->t('Friday'), $this->t('Saturday'), $this->t('Sunday')], + $s); + + $ret = str_replace(['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'], + [$this->t('January'), $this->t('February'), $this->t('March'), $this->t('April'), $this->t('May'), $this->t('June'), $this->t('July'), $this->t('August'), $this->t('September'), $this->t('October'), $this->t('November'), $this->t('December')], + $ret); + + return $ret; + } + + /** + * Translate short days and months names. + * + * @param string $s String with short day or month name. + * + * @return string Translated string. + */ + public function getDayShort($s) + { + $ret = str_replace(['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'], + [$this->t('Mon'), $this->t('Tue'), $this->t('Wed'), $this->t('Thu'), $this->t('Fri'), $this->t('Sat'), $this->t('Sun')], + $s); + + $ret = str_replace(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'], + [$this->t('Jan'), $this->t('Feb'), $this->t('Mar'), $this->t('Apr'), $this->t('May'), $this->t('Jun'), $this->t('Jul'), $this->t('Aug'), $this->t('Sep'), $this->t('Oct'), $this->t('Nov'), $this->t('Dec')], + $ret); + + return $ret; + } + + /** + * Load poke verbs + * + * @return array index is present tense verb + * value is array containing past tense verb, translation of present, translation of past + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @hook poke_verbs pokes array + */ + public function getPokeVerbs() + { + // index is present tense verb + // value is array containing past tense verb, translation of present, translation of past + $arr = [ + 'poke' => ['poked', $this->t('poke'), $this->t('poked')], + 'ping' => ['pinged', $this->t('ping'), $this->t('pinged')], + 'prod' => ['prodded', $this->t('prod'), $this->t('prodded')], + 'slap' => ['slapped', $this->t('slap'), $this->t('slapped')], + 'finger' => ['fingered', $this->t('finger'), $this->t('fingered')], + 'rebuff' => ['rebuffed', $this->t('rebuff'), $this->t('rebuffed')], + ]; + + Hook::callAll('poke_verbs', $arr); + + return $arr; + } + + /** + * Creates a new L10n instance based on the given langauge + * + * @param string $lang The new language + * + * @return static A new L10n instance + * @throws \Exception + */ + public function withLang(string $lang) + { + // Don't create a new instance for same language + if ($lang === $this->lang) { + return $this; + } + + $newL10n = clone $this; + $newL10n->loadTranslationTable($lang); + return $newL10n; + } }