unknown a0372a28bb second commit 2 tháng trước cách đây
..
Catalogue a0372a28bb second commit 2 tháng trước cách đây
Command a0372a28bb second commit 2 tháng trước cách đây
DataCollector a0372a28bb second commit 2 tháng trước cách đây
DependencyInjection a0372a28bb second commit 2 tháng trước cách đây
Dumper a0372a28bb second commit 2 tháng trước cách đây
Exception a0372a28bb second commit 2 tháng trước cách đây
Extractor a0372a28bb second commit 2 tháng trước cách đây
Formatter a0372a28bb second commit 2 tháng trước cách đây
Loader a0372a28bb second commit 2 tháng trước cách đây
Provider a0372a28bb second commit 2 tháng trước cách đây
Reader a0372a28bb second commit 2 tháng trước cách đây
Resources a0372a28bb second commit 2 tháng trước cách đây
Test a0372a28bb second commit 2 tháng trước cách đây
Util a0372a28bb second commit 2 tháng trước cách đây
Writer a0372a28bb second commit 2 tháng trước cách đây
CHANGELOG.md a0372a28bb second commit 2 tháng trước cách đây
CatalogueMetadataAwareInterface.php a0372a28bb second commit 2 tháng trước cách đây
DataCollectorTranslator.php a0372a28bb second commit 2 tháng trước cách đây
IdentityTranslator.php a0372a28bb second commit 2 tháng trước cách đây
LICENSE a0372a28bb second commit 2 tháng trước cách đây
LocaleSwitcher.php a0372a28bb second commit 2 tháng trước cách đây
LoggingTranslator.php a0372a28bb second commit 2 tháng trước cách đây
MessageCatalogue.php a0372a28bb second commit 2 tháng trước cách đây
MessageCatalogueInterface.php a0372a28bb second commit 2 tháng trước cách đây
MetadataAwareInterface.php a0372a28bb second commit 2 tháng trước cách đây
PseudoLocalizationTranslator.php a0372a28bb second commit 2 tháng trước cách đây
README.md a0372a28bb second commit 2 tháng trước cách đây
StaticMessage.php a0372a28bb second commit 2 tháng trước cách đây
TranslatableMessage.php a0372a28bb second commit 2 tháng trước cách đây
Translator.php a0372a28bb second commit 2 tháng trước cách đây
TranslatorBag.php a0372a28bb second commit 2 tháng trước cách đây
TranslatorBagInterface.php a0372a28bb second commit 2 tháng trước cách đây
composer.json a0372a28bb second commit 2 tháng trước cách đây

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 ! »

Sponsor

Help Symfony by sponsoring its development!

Resources