class Translator implements TranslatorInterface, TranslatorBagInterface
Translator.
Methods
__construct(string $locale, MessageSelector $selector = null, string|null $cacheDir = null, bool $debug = false) Constructor. | ||
setConfigCacheFactory(ConfigCacheFactoryInterface $configCacheFactory) Sets the ConfigCache factory to use. | ||
addLoader(string $format, LoaderInterface $loader) Adds a Loader. | ||
addResource(string $format, mixed $resource, string $locale, string $domain = null) Adds a Resource. | ||
setLocale(string $locale) Sets the current locale. | ||
string | getLocale() Returns the current locale. | |
setFallbackLocales(array $locales) Sets the fallback locales. | ||
array | getFallbackLocales() Gets the fallback locales. | |
string | trans(string $id, array $parameters = array(), string|null $domain = null, string|null $locale = null) Translates the given message. | |
string | transChoice(string $id, int $number, array $parameters = array(), string|null $domain = null, string|null $locale = null) Translates the given choice message by choosing a translation according to a number. | |
MessageCatalogueInterface | getCatalogue(string|null $locale = null) Gets the catalogue by locale. |
Details
__construct(string $locale, MessageSelector $selector = null, string|null $cacheDir = null, bool $debug = false)
Constructor.
setConfigCacheFactory(ConfigCacheFactoryInterface $configCacheFactory)
Sets the ConfigCache factory to use.
addLoader(string $format, LoaderInterface $loader)
Adds a Loader.
addResource(string $format, mixed $resource, string $locale, string $domain = null)
Adds a Resource.
setLocale(string $locale)
Sets the current locale.
string getLocale()
Returns the current locale.
setFallbackLocales(array $locales)
Sets the fallback locales.
array getFallbackLocales()
Gets the fallback locales.
string trans(string $id, array $parameters = array(), string|null $domain = null, string|null $locale = null)
Translates the given message.
string transChoice(string $id, int $number, array $parameters = array(), string|null $domain = null, string|null $locale = null)
Translates the given choice message by choosing a translation according to a number.
MessageCatalogueInterface getCatalogue(string|null $locale = null)
Gets the catalogue by locale.
Please login to continue.