rkljw 589f85179c 第一次提交public_producer 10 months ago
..
Catalogue 589f85179c 第一次提交public_producer 10 months ago
Command 589f85179c 第一次提交public_producer 10 months ago
DataCollector 589f85179c 第一次提交public_producer 10 months ago
DependencyInjection 589f85179c 第一次提交public_producer 10 months ago
Dumper 589f85179c 第一次提交public_producer 10 months ago
Exception 589f85179c 第一次提交public_producer 10 months ago
Extractor 589f85179c 第一次提交public_producer 10 months ago
Formatter 589f85179c 第一次提交public_producer 10 months ago
Loader 589f85179c 第一次提交public_producer 10 months ago
Provider 589f85179c 第一次提交public_producer 10 months ago
Reader 589f85179c 第一次提交public_producer 10 months ago
Resources 589f85179c 第一次提交public_producer 10 months ago
Test 589f85179c 第一次提交public_producer 10 months ago
Util 589f85179c 第一次提交public_producer 10 months ago
Writer 589f85179c 第一次提交public_producer 10 months ago
CHANGELOG.md 589f85179c 第一次提交public_producer 10 months ago
CatalogueMetadataAwareInterface.php 589f85179c 第一次提交public_producer 10 months ago
DataCollectorTranslator.php 589f85179c 第一次提交public_producer 10 months ago
IdentityTranslator.php 589f85179c 第一次提交public_producer 10 months ago
LICENSE 589f85179c 第一次提交public_producer 10 months ago
LocaleSwitcher.php 589f85179c 第一次提交public_producer 10 months ago
LoggingTranslator.php 589f85179c 第一次提交public_producer 10 months ago
MessageCatalogue.php 589f85179c 第一次提交public_producer 10 months ago
MessageCatalogueInterface.php 589f85179c 第一次提交public_producer 10 months ago
MetadataAwareInterface.php 589f85179c 第一次提交public_producer 10 months ago
PseudoLocalizationTranslator.php 589f85179c 第一次提交public_producer 10 months ago
README.md 589f85179c 第一次提交public_producer 10 months ago
TranslatableMessage.php 589f85179c 第一次提交public_producer 10 months ago
Translator.php 589f85179c 第一次提交public_producer 10 months ago
TranslatorBag.php 589f85179c 第一次提交public_producer 10 months ago
TranslatorBagInterface.php 589f85179c 第一次提交public_producer 10 months ago
composer.json 589f85179c 第一次提交public_producer 10 months ago

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