andryyy 5035e5bb42 [Web] Update composer deps 4 lat temu
..
Catalogue 5035e5bb42 [Web] Update composer deps 4 lat temu
Command 5035e5bb42 [Web] Update composer deps 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 5035e5bb42 [Web] Update composer deps 4 lat temu
Dumper 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
Exception 5035e5bb42 [Web] Update composer deps 4 lat temu
Extractor 5035e5bb42 [Web] Update composer deps 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 5035e5bb42 [Web] Update composer deps 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 5035e5bb42 [Web] Update composer deps 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 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
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 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
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 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
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 5035e5bb42 [Web] Update composer deps 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 5035e5bb42 [Web] Update composer deps 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