wangsaitao b6131e421c 提交 há 1 ano atrás
..
Catalogue b6131e421c 提交 há 1 ano atrás
Command b6131e421c 提交 há 1 ano atrás
DataCollector b6131e421c 提交 há 1 ano atrás
DependencyInjection b6131e421c 提交 há 1 ano atrás
Dumper b6131e421c 提交 há 1 ano atrás
Exception b6131e421c 提交 há 1 ano atrás
Extractor b6131e421c 提交 há 1 ano atrás
Formatter b6131e421c 提交 há 1 ano atrás
Loader b6131e421c 提交 há 1 ano atrás
Reader b6131e421c 提交 há 1 ano atrás
Resources b6131e421c 提交 há 1 ano atrás
Util b6131e421c 提交 há 1 ano atrás
Writer b6131e421c 提交 há 1 ano atrás
CHANGELOG.md b6131e421c 提交 há 1 ano atrás
DataCollectorTranslator.php b6131e421c 提交 há 1 ano atrás
IdentityTranslator.php b6131e421c 提交 há 1 ano atrás
Interval.php b6131e421c 提交 há 1 ano atrás
LICENSE b6131e421c 提交 há 1 ano atrás
LoggingTranslator.php b6131e421c 提交 há 1 ano atrás
MessageCatalogue.php b6131e421c 提交 há 1 ano atrás
MessageCatalogueInterface.php b6131e421c 提交 há 1 ano atrás
MessageSelector.php b6131e421c 提交 há 1 ano atrás
MetadataAwareInterface.php b6131e421c 提交 há 1 ano atrás
PluralizationRules.php b6131e421c 提交 há 1 ano atrás
README.md b6131e421c 提交 há 1 ano atrás
Translator.php b6131e421c 提交 há 1 ano atrás
TranslatorBagInterface.php b6131e421c 提交 há 1 ano atrás
TranslatorInterface.php b6131e421c 提交 há 1 ano atrás
composer.json b6131e421c 提交 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 ! »

Resources