2018-01-20 15:41:50 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @file src/Core/L10n.php
|
|
|
|
*/
|
|
|
|
namespace Friendica\Core;
|
|
|
|
|
2019-07-21 20:24:16 +02:00
|
|
|
use Friendica\BaseObject;
|
2019-07-09 21:44:02 +02:00
|
|
|
use Friendica\Core\L10n\L10n as L10nClass;
|
2018-01-20 15:41:50 +01:00
|
|
|
|
|
|
|
/**
|
2018-10-22 06:16:30 +02:00
|
|
|
* Provide Language, Translation, and Localization functions to the application
|
|
|
|
* Localization can be referred to by the numeronym L10N (as in: "L", followed by ten more letters, and then "N").
|
2018-01-20 15:41:50 +01:00
|
|
|
*/
|
2019-07-21 20:24:16 +02:00
|
|
|
class L10n extends BaseObject
|
2018-01-20 15:41:50 +01:00
|
|
|
{
|
2018-10-22 06:16:30 +02:00
|
|
|
/**
|
|
|
|
* Returns the current language code
|
|
|
|
*
|
|
|
|
* @return string Language code
|
|
|
|
*/
|
|
|
|
public static function getCurrentLang()
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
return self::getClass(L10nClass::class)->getCurrentLang();
|
2018-01-20 15:41:50 +01:00
|
|
|
}
|
|
|
|
|
2018-01-21 17:38:01 +01:00
|
|
|
/**
|
2019-12-28 23:12:01 +01:00
|
|
|
* @param string $lang
|
2018-10-22 06:16:30 +02:00
|
|
|
*
|
2019-12-28 23:12:01 +01:00
|
|
|
* @return L10nClass The new L10n class with the new language
|
2018-10-22 06:16:30 +02:00
|
|
|
*
|
2019-12-28 23:12:01 +01:00
|
|
|
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
|
2018-01-21 17:38:01 +01:00
|
|
|
*/
|
2019-12-28 23:12:01 +01:00
|
|
|
public static function withLang(string $lang)
|
2018-01-21 17:38:01 +01:00
|
|
|
{
|
2019-12-28 23:12:01 +01:00
|
|
|
return self::getClass(L10nClass::class)->withLang($lang);
|
2018-01-20 15:41:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief 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:
|
2018-01-24 03:59:16 +01:00
|
|
|
* - L10n::t('This is an example')
|
|
|
|
* - L10n::t('URL %s returned no result', $url)
|
|
|
|
* - L10n::t('Current version: %s, new version: %s', $current_version, $new_version)
|
2018-01-20 15:41:50 +01:00
|
|
|
*
|
|
|
|
* @param string $s
|
2018-02-03 19:46:01 +01:00
|
|
|
* @param array $vars Variables to interpolate in the translation string
|
2019-09-03 16:07:05 +02:00
|
|
|
*
|
2018-01-20 15:41:50 +01:00
|
|
|
* @return string
|
|
|
|
*/
|
2018-02-03 19:46:01 +01:00
|
|
|
public static function t($s, ...$vars)
|
2018-01-20 15:41:50 +01:00
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
return self::getClass(L10nClass::class)->t($s, ...$vars);
|
2018-01-20 15:41:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief 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
|
|
|
|
* are used instead. Discrimination between singular and plural is done using the
|
|
|
|
* localized function if any or the default one. Finally, a string interpolation
|
|
|
|
* is performed using the count as parameter.
|
|
|
|
*
|
|
|
|
* Usages:
|
2018-01-24 03:59:16 +01:00
|
|
|
* - L10n::tt('Like', 'Likes', $count)
|
|
|
|
* - L10n::tt("%s user deleted", "%s users deleted", count($users))
|
2018-01-20 15:41:50 +01:00
|
|
|
*
|
|
|
|
* @param string $singular
|
|
|
|
* @param string $plural
|
2019-01-06 22:06:53 +01:00
|
|
|
* @param int $count
|
2019-09-03 16:07:05 +02:00
|
|
|
*
|
2018-01-20 15:41:50 +01:00
|
|
|
* @return string
|
2019-01-06 22:06:53 +01:00
|
|
|
* @throws \Exception
|
2018-01-20 15:41:50 +01:00
|
|
|
*/
|
2019-07-09 21:44:02 +02:00
|
|
|
public static function tt(string $singular, string $plural, int $count)
|
2018-01-20 15:41:50 +01:00
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
return self::getClass(L10nClass::class)->tt($singular, $plural, $count);
|
2018-01-20 15:41:50 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief 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).
|
|
|
|
* Adds the english language if it's missing from the list.
|
|
|
|
*
|
|
|
|
* Ex: array('de' => 'de', 'en' => 'en', 'fr' => 'fr', ...)
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
2018-01-21 18:06:27 +01:00
|
|
|
public static function getAvailableLanguages()
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
return L10nClass::getAvailableLanguages();
|
2018-01-20 15:41:50 +01:00
|
|
|
}
|
2018-11-06 15:48:58 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Translate days and months names.
|
|
|
|
*
|
|
|
|
* @param string $s String with day or month name.
|
2019-09-03 16:07:05 +02:00
|
|
|
*
|
2018-11-06 15:48:58 +01:00
|
|
|
* @return string Translated string.
|
|
|
|
*/
|
|
|
|
public static function getDay($s)
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
return self::getClass(L10nClass::class)->getDay($s);
|
2018-11-06 15:48:58 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Translate short days and months names.
|
|
|
|
*
|
|
|
|
* @param string $s String with short day or month name.
|
2019-09-03 16:07:05 +02:00
|
|
|
*
|
2018-11-06 15:48:58 +01:00
|
|
|
* @return string Translated string.
|
|
|
|
*/
|
|
|
|
public static function getDayShort($s)
|
|
|
|
{
|
2019-07-21 20:24:16 +02:00
|
|
|
return self::getClass(L10nClass::class)->getDayShort($s);
|
2018-11-06 15:48:58 +01:00
|
|
|
}
|
2019-09-03 16:07:05 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Load poke verbs
|
|
|
|
*
|
|
|
|
* @return array index is present tense verb
|
|
|
|
* value is array containing past tense verb, translation of present, translation of past
|
|
|
|
* @hook poke_verbs pokes array
|
|
|
|
*/
|
|
|
|
public static function getPokeVerbs()
|
|
|
|
{
|
|
|
|
return self::getClass(L10nClass::class)->getPokeVerbs();
|
|
|
|
}
|
2018-01-20 15:41:50 +01:00
|
|
|
}
|