2
0
andryyy cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 жил өмнө
..
Catalogue 5035e5bb42 [Web] Update composer deps 4 жил өмнө
Command cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 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 cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 жил өмнө
Dumper cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 жил өмнө
Exception cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 жил өмнө
Extractor cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 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 cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 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 cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 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 cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 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 cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 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 cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 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 cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 4 жил өмнө
TranslatorBag.php 5035e5bb42 [Web] Update composer deps 4 жил өмнө
TranslatorBagInterface.php 5035e5bb42 [Web] Update composer deps 4 жил өмнө
composer.json cf8fdae277 [Web] Some minor fixes and improvements for PHP 8 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