andryyy cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
..
Catalogue 5035e5bb42 [Web] Update composer deps il y a 4 ans
Command cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
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 il y a 4 ans
DependencyInjection cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
Dumper cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
Exception cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
Extractor cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
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 il y a 4 ans
Loader cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
Provider 5035e5bb42 [Web] Update composer deps il y a 4 ans
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 il y a 4 ans
Resources cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
Test 5035e5bb42 [Web] Update composer deps il y a 4 ans
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 il y a 4 ans
Writer cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
CHANGELOG.md 5035e5bb42 [Web] Update composer deps il y a 4 ans
DataCollectorTranslator.php 5035e5bb42 [Web] Update composer deps il y a 4 ans
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 il y a 4 ans
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 il y a 4 ans
LoggingTranslator.php 5035e5bb42 [Web] Update composer deps il y a 4 ans
MessageCatalogue.php cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
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 il y a 4 ans
MetadataAwareInterface.php cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
PseudoLocalizationTranslator.php 5035e5bb42 [Web] Update composer deps il y a 4 ans
README.md 5035e5bb42 [Web] Update composer deps il y a 4 ans
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 il y a 4 ans
Translator.php cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans
TranslatorBag.php 5035e5bb42 [Web] Update composer deps il y a 4 ans
TranslatorBagInterface.php 5035e5bb42 [Web] Update composer deps il y a 4 ans
composer.json cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 il y a 4 ans

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