andryyy cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
..
Catalogue 5035e5bb42 [Web] Update composer deps 4 lat temu
Command cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
DataCollector 19843cc786 [Web] Fix mailbox editing when password is unchanged, fix adding new administrator (fixes #4054, fixes #4053); [Web] Update libs, add LDAP for future admin/domain admin authentication 4 lat temu
DependencyInjection cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
Dumper cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
Exception cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
Extractor cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
Formatter 19843cc786 [Web] Fix mailbox editing when password is unchanged, fix adding new administrator (fixes #4054, fixes #4053); [Web] Update libs, add LDAP for future admin/domain admin authentication 4 lat temu
Loader cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
Provider 5035e5bb42 [Web] Update composer deps 4 lat temu
Reader 19843cc786 [Web] Fix mailbox editing when password is unchanged, fix adding new administrator (fixes #4054, fixes #4053); [Web] Update libs, add LDAP for future admin/domain admin authentication 4 lat temu
Resources cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
Test 5035e5bb42 [Web] Update composer deps 4 lat temu
Util 19843cc786 [Web] Fix mailbox editing when password is unchanged, fix adding new administrator (fixes #4054, fixes #4053); [Web] Update libs, add LDAP for future admin/domain admin authentication 4 lat temu
Writer cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
CHANGELOG.md 5035e5bb42 [Web] Update composer deps 4 lat temu
DataCollectorTranslator.php 5035e5bb42 [Web] Update composer deps 4 lat temu
IdentityTranslator.php 19843cc786 [Web] Fix mailbox editing when password is unchanged, fix adding new administrator (fixes #4054, fixes #4053); [Web] Update libs, add LDAP for future admin/domain admin authentication 4 lat temu
LICENSE 19843cc786 [Web] Fix mailbox editing when password is unchanged, fix adding new administrator (fixes #4054, fixes #4053); [Web] Update libs, add LDAP for future admin/domain admin authentication 4 lat temu
LoggingTranslator.php 5035e5bb42 [Web] Update composer deps 4 lat temu
MessageCatalogue.php cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
MessageCatalogueInterface.php 19843cc786 [Web] Fix mailbox editing when password is unchanged, fix adding new administrator (fixes #4054, fixes #4053); [Web] Update libs, add LDAP for future admin/domain admin authentication 4 lat temu
MetadataAwareInterface.php cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
PseudoLocalizationTranslator.php 5035e5bb42 [Web] Update composer deps 4 lat temu
README.md 5035e5bb42 [Web] Update composer deps 4 lat temu
TranslatableMessage.php 19843cc786 [Web] Fix mailbox editing when password is unchanged, fix adding new administrator (fixes #4054, fixes #4053); [Web] Update libs, add LDAP for future admin/domain admin authentication 4 lat temu
Translator.php cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu
TranslatorBag.php 5035e5bb42 [Web] Update composer deps 4 lat temu
TranslatorBagInterface.php 5035e5bb42 [Web] Update composer deps 4 lat temu
composer.json cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 lat temu

README.md

Translation Component

The Translation component provides tools to internationalize your application.

Getting Started

$ composer require symfony/translation
use Symfony\Component\Translation\Translator;
use Symfony\Component\Translation\Loader\ArrayLoader;

$translator = new Translator('fr_FR');
$translator->addLoader('array', new ArrayLoader());
$translator->addResource('array', [
    'Hello World!' => 'Bonjour !',
], 'fr_FR');

echo $translator->trans('Hello World!'); // outputs « Bonjour ! »

Resources