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

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