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

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