rkljw a5ab796e9f Revert "server-port" 5 tháng trước cách đây
..
Catalogue 2d74f709d7 news_producer 8 tháng trước cách đây
Command 2d74f709d7 news_producer 8 tháng trước cách đây
DataCollector 2d74f709d7 news_producer 8 tháng trước cách đây
DependencyInjection 2d74f709d7 news_producer 8 tháng trước cách đây
Dumper a5ab796e9f Revert "server-port" 5 tháng trước cách đây
Exception 2d74f709d7 news_producer 8 tháng trước cách đây
Extractor a5ab796e9f Revert "server-port" 5 tháng trước cách đây
Formatter 2d74f709d7 news_producer 8 tháng trước cách đây
Loader a5ab796e9f Revert "server-port" 5 tháng trước cách đây
Provider 2d74f709d7 news_producer 8 tháng trước cách đây
Reader 2d74f709d7 news_producer 8 tháng trước cách đây
Resources 2d74f709d7 news_producer 8 tháng trước cách đây
Test 2d74f709d7 news_producer 8 tháng trước cách đây
Util 2d74f709d7 news_producer 8 tháng trước cách đây
Writer 2d74f709d7 news_producer 8 tháng trước cách đây
CHANGELOG.md 2d74f709d7 news_producer 8 tháng trước cách đây
CatalogueMetadataAwareInterface.php 2d74f709d7 news_producer 8 tháng trước cách đây
DataCollectorTranslator.php 2d74f709d7 news_producer 8 tháng trước cách đây
IdentityTranslator.php 2d74f709d7 news_producer 8 tháng trước cách đây
LICENSE 2d74f709d7 news_producer 8 tháng trước cách đây
LocaleSwitcher.php 2d74f709d7 news_producer 8 tháng trước cách đây
LoggingTranslator.php 2d74f709d7 news_producer 8 tháng trước cách đây
MessageCatalogue.php 2d74f709d7 news_producer 8 tháng trước cách đây
MessageCatalogueInterface.php 2d74f709d7 news_producer 8 tháng trước cách đây
MetadataAwareInterface.php 2d74f709d7 news_producer 8 tháng trước cách đây
PseudoLocalizationTranslator.php 2d74f709d7 news_producer 8 tháng trước cách đây
README.md 2d74f709d7 news_producer 8 tháng trước cách đây
TranslatableMessage.php 2d74f709d7 news_producer 8 tháng trước cách đây
Translator.php 2d74f709d7 news_producer 8 tháng trước cách đây
TranslatorBag.php 2d74f709d7 news_producer 8 tháng trước cách đây
TranslatorBagInterface.php 2d74f709d7 news_producer 8 tháng trước cách đây
composer.json 2d74f709d7 news_producer 8 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