2
0
andryyy 5035e5bb42 [Web] Update composer deps 4 жил өмнө
..
Catalogue 5035e5bb42 [Web] Update composer deps 4 жил өмнө
Command 5035e5bb42 [Web] Update composer deps 4 жил өмнө
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 жил өмнө
DependencyInjection 5035e5bb42 [Web] Update composer deps 4 жил өмнө
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 жил өмнө
Exception 5035e5bb42 [Web] Update composer deps 4 жил өмнө
Extractor 5035e5bb42 [Web] Update composer deps 4 жил өмнө
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 жил өмнө
Loader 5035e5bb42 [Web] Update composer deps 4 жил өмнө
Provider 5035e5bb42 [Web] Update composer deps 4 жил өмнө
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 жил өмнө
Resources 5035e5bb42 [Web] Update composer deps 4 жил өмнө
Test 5035e5bb42 [Web] Update composer deps 4 жил өмнө
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 жил өмнө
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 жил өмнө
CHANGELOG.md 5035e5bb42 [Web] Update composer deps 4 жил өмнө
DataCollectorTranslator.php 5035e5bb42 [Web] Update composer deps 4 жил өмнө
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 жил өмнө
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 жил өмнө
LoggingTranslator.php 5035e5bb42 [Web] Update composer deps 4 жил өмнө
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 жил өмнө
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 жил өмнө
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 жил өмнө
PseudoLocalizationTranslator.php 5035e5bb42 [Web] Update composer deps 4 жил өмнө
README.md 5035e5bb42 [Web] Update composer deps 4 жил өмнө
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 жил өмнө
Translator.php 5035e5bb42 [Web] Update composer deps 4 жил өмнө
TranslatorBag.php 5035e5bb42 [Web] Update composer deps 4 жил өмнө
TranslatorBagInterface.php 5035e5bb42 [Web] Update composer deps 4 жил өмнө
composer.json 5035e5bb42 [Web] Update composer deps 4 жил өмнө

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