Zory dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
..
Catalogue dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Command dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
DataCollector dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
DependencyInjection dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Dumper dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Exception dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Extractor dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Formatter dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Loader dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Provider dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Reader dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Resources dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Test dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Util dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Writer dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
CHANGELOG.md dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
CatalogueMetadataAwareInterface.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
DataCollectorTranslator.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
IdentityTranslator.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
LICENSE dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
LocaleSwitcher.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
LoggingTranslator.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
MessageCatalogue.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
MessageCatalogueInterface.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
MetadataAwareInterface.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
PseudoLocalizationTranslator.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
README.md dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
StaticMessage.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
TranslatableMessage.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
Translator.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
TranslatorBag.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
TranslatorBagInterface.php dcdfcf7578 0720-0127-h01 2 tuần trước cách đây
composer.json dcdfcf7578 0720-0127-h01 2 tuần 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