3 * @file src/Core/L10n.php
5 namespace Friendica\Core;
7 use Friendica\BaseObject;
8 use Friendica\Database\DBA;
11 * Provide Language, Translation, and Localization functions to the application
12 * Localization can be referred to by the numeronym L10N (as in: "L", followed by ten more letters, and then "N").
14 class L10n extends BaseObject
17 * A string indicating the current language used for translation:
18 * - Two-letter ISO 639-1 code.
19 * - Two-letter ISO 639-1 code + dash + Two-letter ISO 3166-1 alpha-2 country code.
22 private static $lang = '';
24 * A language code saved for later after pushLang() has been called.
28 private static $langSave = '';
31 * An array of translation strings whose key is the neutral english message.
35 private static $strings = [];
37 * An array of translation strings saved for later after pushLang() has been called.
41 private static $stringsSave = [];
44 * Detects the language and sets the translation table
46 public static function init()
48 $lang = self::detectLanguage();
49 self::loadTranslationTable($lang);
53 * Returns the current language code
55 * @return string Language code
57 public static function getCurrentLang()
63 * Sets the language session variable
65 public static function setSessionVariable()
67 if (!empty($_SESSION['authenticated']) && empty($_SESSION['language'])) {
68 $_SESSION['language'] = self::$lang;
69 // we haven't loaded user data yet, but we need user language
70 if (!empty($_SESSION['uid'])) {
71 $user = DBA::selectFirst('user', ['language'], ['uid' => $_SESSION['uid']]);
72 if (DBA::isResult($user)) {
73 $_SESSION['language'] = $user['language'];
78 if (isset($_GET['lang'])) {
79 $_SESSION['language'] = $_GET['lang'];
83 public static function setLangFromSession()
85 if (!empty($_SESSION['language']) && $_SESSION['language'] !== self::$lang) {
86 self::loadTranslationTable($_SESSION['language']);
91 * @brief Returns the preferred language from the HTTP_ACCEPT_LANGUAGE header
92 * @return string The two-letter language code
93 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
95 public static function detectLanguage()
99 if (!empty($_SERVER['HTTP_ACCEPT_LANGUAGE'])) {
100 // break up string into pieces (languages and q factors)
101 preg_match_all('/([a-z]{1,8}(-[a-z]{1,8})?)\s*(;\s*q\s*=\s*(1|0\.[0-9]+))?/i', $_SERVER['HTTP_ACCEPT_LANGUAGE'], $lang_parse);
103 if (count($lang_parse[1])) {
104 // go through the list of prefered languages and add a generic language
105 // for sub-linguas (e.g. de-ch will add de) if not already in array
106 for ($i = 0; $i < count($lang_parse[1]); $i++) {
107 $lang_list[] = strtolower($lang_parse[1][$i]);
108 if (strlen($lang_parse[1][$i])>3) {
109 $dashpos = strpos($lang_parse[1][$i], '-');
110 if (!in_array(substr($lang_parse[1][$i], 0, $dashpos), $lang_list)) {
111 $lang_list[] = strtolower(substr($lang_parse[1][$i], 0, $dashpos));
118 if (isset($_GET['lang'])) {
119 $lang_list = [$_GET['lang']];
122 // check if we have translations for the preferred languages and pick the 1st that has
123 foreach ($lang_list as $lang) {
124 if ($lang === 'en' || (file_exists("view/lang/$lang") && is_dir("view/lang/$lang"))) {
129 if (isset($preferred)) {
133 // in case none matches, get the system wide configured language, or fall back to English
134 return Config::get('system', 'language', 'en');
138 * This function should be called before formatting messages in a specific target language
139 * different from the current user/system language.
141 * It saves the current translation strings in a separate variable and loads new translations strings.
143 * If called repeatedly, it won't save the translation strings again, just load the new ones.
146 * @brief Stores the current language strings and load a different language.
147 * @param string $lang Language code
150 public static function pushLang($lang)
156 if ($lang === self::$lang) {
160 if (!self::$langSave) {
161 self::$langSave = self::$lang;
162 self::$stringsSave = self::$strings;
165 self::loadTranslationTable($lang);
169 * Restores the original user/system language after having used pushLang()
171 public static function popLang()
173 if (!self::$langSave) {
177 self::$strings = self::$stringsSave;
178 self::$lang = self::$langSave;
180 self::$stringsSave = [];
181 self::$langSave = '';
185 * Loads string translation table
187 * First addon strings are loaded, then globals
189 * Uses an App object shim since all the strings files refer to $a->strings
191 * @param string $lang language code to load
194 private static function loadTranslationTable($lang)
196 if ($lang === self::$lang) {
200 $a = new \stdClass();
203 // load enabled addons strings
204 $addons = DBA::select('addon', ['name'], ['installed' => true]);
205 while ($p = DBA::fetch($addons)) {
207 if (file_exists("addon/$name/lang/$lang/strings.php")) {
208 include "addon/$name/lang/$lang/strings.php";
212 if (file_exists("view/lang/$lang/strings.php")) {
213 include "view/lang/$lang/strings.php";
217 self::$strings = $a->strings;
223 * @brief Return the localized version of the provided string with optional string interpolation
225 * This function takes a english string as parameter, and if a localized version
226 * exists for the current language, substitutes it before performing an eventual
227 * string interpolation (sprintf) with additional optional arguments.
230 * - L10n::t('This is an example')
231 * - L10n::t('URL %s returned no result', $url)
232 * - L10n::t('Current version: %s, new version: %s', $current_version, $new_version)
235 * @param array $vars Variables to interpolate in the translation string
238 public static function t($s, ...$vars)
248 if (!empty(self::$strings[$s])) {
249 $t = self::$strings[$s];
250 $s = is_array($t) ? $t[0] : $t;
253 if (count($vars) > 0) {
254 $s = sprintf($s, ...$vars);
261 * @brief Return the localized version of a singular/plural string with optional string interpolation
263 * This function takes two english strings as parameters, singular and plural, as
264 * well as a count. If a localized version exists for the current language, they
265 * are used instead. Discrimination between singular and plural is done using the
266 * localized function if any or the default one. Finally, a string interpolation
267 * is performed using the count as parameter.
270 * - L10n::tt('Like', 'Likes', $count)
271 * - L10n::tt("%s user deleted", "%s users deleted", count($users))
273 * @param string $singular
274 * @param string $plural
279 public static function tt($singular, $plural, $count)
281 if (!is_numeric($count)) {
282 Logger::log('Non numeric count called by ' . System::callstack(20));
289 if (!empty(self::$strings[$singular])) {
290 $t = self::$strings[$singular];
292 $plural_function = 'string_plural_select_' . str_replace('-', '_', self::$lang);
293 if (function_exists($plural_function)) {
294 $i = $plural_function($count);
296 $i = self::stringPluralSelectDefault($count);
299 // for some languages there is only a single array item
300 if (!isset($t[$i])) {
308 } elseif (self::stringPluralSelectDefault($count)) {
314 $s = @sprintf($s, $count);
320 * Provide a fallback which will not collide with a function defined in any language file
325 private static function stringPluralSelectDefault($n)
331 * @brief Return installed languages codes as associative array
333 * Scans the view/lang directory for the existence of "strings.php" files, and
334 * returns an alphabetical list of their folder names (@-char language codes).
335 * Adds the english language if it's missing from the list.
337 * Ex: array('de' => 'de', 'en' => 'en', 'fr' => 'fr', ...)
341 public static function getAvailableLanguages()
344 $strings_file_paths = glob('view/lang/*/strings.php');
346 if (is_array($strings_file_paths) && count($strings_file_paths)) {
347 if (!in_array('view/lang/en/strings.php', $strings_file_paths)) {
348 $strings_file_paths[] = 'view/lang/en/strings.php';
350 asort($strings_file_paths);
351 foreach ($strings_file_paths as $strings_file_path) {
352 $path_array = explode('/', $strings_file_path);
353 $langs[$path_array[2]] = $path_array[2];
360 * @brief Translate days and months names.
362 * @param string $s String with day or month name.
363 * @return string Translated string.
365 public static function getDay($s)
367 $ret = str_replace(['Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday', 'Sunday'],
368 [self::t('Monday'), self::t('Tuesday'), self::t('Wednesday'), self::t('Thursday'), self::t('Friday'), self::t('Saturday'), self::t('Sunday')],
371 $ret = str_replace(['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'],
372 [self::t('January'), self::t('February'), self::t('March'), self::t('April'), self::t('May'), self::t('June'), self::t('July'), self::t('August'), self::t('September'), self::t('October'), self::t('November'), self::t('December')],
379 * @brief Translate short days and months names.
381 * @param string $s String with short day or month name.
382 * @return string Translated string.
384 public static function getDayShort($s)
386 $ret = str_replace(['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun'],
387 [self::t('Mon'), self::t('Tue'), self::t('Wed'), self::t('Thu'), self::t('Fri'), self::t('Sat'), self::t('Sun')],
390 $ret = str_replace(['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'],
391 [self::t('Jan'), self::t('Feb'), self::t('Mar'), self::t('Apr'), self::t('May'), ('Jun'), self::t('Jul'), self::t('Aug'), self::t('Sep'), self::t('Oct'), self::t('Nov'), self::t('Dec')],
400 * @return array index is present tense verb
401 * value is array containing past tense verb, translation of present, translation of past
402 * @throws \Friendica\Network\HTTPException\InternalServerErrorException
403 * @hook poke_verbs pokes array
405 public static function getPokeVerbs()
407 // index is present tense verb
408 // value is array containing past tense verb, translation of present, translation of past
410 'poke' => ['poked', self::t('poke'), self::t('poked')],
411 'ping' => ['pinged', self::t('ping'), self::t('pinged')],
412 'prod' => ['prodded', self::t('prod'), self::t('prodded')],
413 'slap' => ['slapped', self::t('slap'), self::t('slapped')],
414 'finger' => ['fingered', self::t('finger'), self::t('fingered')],
415 'rebuff' => ['rebuffed', self::t('rebuff'), self::t('rebuffed')],
418 Hook::callAll('poke_verbs', $arr);