rkljw 600fc1a941 第一次提交 há 1 ano atrás
..
Catalogue 600fc1a941 第一次提交 há 1 ano atrás
Command 600fc1a941 第一次提交 há 1 ano atrás
DataCollector 600fc1a941 第一次提交 há 1 ano atrás
DependencyInjection 600fc1a941 第一次提交 há 1 ano atrás
Dumper 600fc1a941 第一次提交 há 1 ano atrás
Exception 600fc1a941 第一次提交 há 1 ano atrás
Extractor 600fc1a941 第一次提交 há 1 ano atrás
Formatter 600fc1a941 第一次提交 há 1 ano atrás
Loader 600fc1a941 第一次提交 há 1 ano atrás
Provider 600fc1a941 第一次提交 há 1 ano atrás
Reader 600fc1a941 第一次提交 há 1 ano atrás
Resources 600fc1a941 第一次提交 há 1 ano atrás
Test 600fc1a941 第一次提交 há 1 ano atrás
Util 600fc1a941 第一次提交 há 1 ano atrás
Writer 600fc1a941 第一次提交 há 1 ano atrás
CHANGELOG.md 600fc1a941 第一次提交 há 1 ano atrás
CatalogueMetadataAwareInterface.php 600fc1a941 第一次提交 há 1 ano atrás
DataCollectorTranslator.php 600fc1a941 第一次提交 há 1 ano atrás
IdentityTranslator.php 600fc1a941 第一次提交 há 1 ano atrás
LICENSE 600fc1a941 第一次提交 há 1 ano atrás
LocaleSwitcher.php 600fc1a941 第一次提交 há 1 ano atrás
LoggingTranslator.php 600fc1a941 第一次提交 há 1 ano atrás
MessageCatalogue.php 600fc1a941 第一次提交 há 1 ano atrás
MessageCatalogueInterface.php 600fc1a941 第一次提交 há 1 ano atrás
MetadataAwareInterface.php 600fc1a941 第一次提交 há 1 ano atrás
PseudoLocalizationTranslator.php 600fc1a941 第一次提交 há 1 ano atrás
README.md 600fc1a941 第一次提交 há 1 ano atrás
TranslatableMessage.php 600fc1a941 第一次提交 há 1 ano atrás
Translator.php 600fc1a941 第一次提交 há 1 ano atrás
TranslatorBag.php 600fc1a941 第一次提交 há 1 ano atrás
TranslatorBagInterface.php 600fc1a941 第一次提交 há 1 ano atrás
composer.json 600fc1a941 第一次提交 há 1 ano atrás

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