wangsaitao b6131e421c 提交 hace 1 año
..
Catalogue b6131e421c 提交 hace 1 año
Command b6131e421c 提交 hace 1 año
DataCollector b6131e421c 提交 hace 1 año
DependencyInjection b6131e421c 提交 hace 1 año
Dumper b6131e421c 提交 hace 1 año
Exception b6131e421c 提交 hace 1 año
Extractor b6131e421c 提交 hace 1 año
Formatter b6131e421c 提交 hace 1 año
Loader b6131e421c 提交 hace 1 año
Reader b6131e421c 提交 hace 1 año
Resources b6131e421c 提交 hace 1 año
Util b6131e421c 提交 hace 1 año
Writer b6131e421c 提交 hace 1 año
CHANGELOG.md b6131e421c 提交 hace 1 año
DataCollectorTranslator.php b6131e421c 提交 hace 1 año
IdentityTranslator.php b6131e421c 提交 hace 1 año
Interval.php b6131e421c 提交 hace 1 año
LICENSE b6131e421c 提交 hace 1 año
LoggingTranslator.php b6131e421c 提交 hace 1 año
MessageCatalogue.php b6131e421c 提交 hace 1 año
MessageCatalogueInterface.php b6131e421c 提交 hace 1 año
MessageSelector.php b6131e421c 提交 hace 1 año
MetadataAwareInterface.php b6131e421c 提交 hace 1 año
PluralizationRules.php b6131e421c 提交 hace 1 año
README.md b6131e421c 提交 hace 1 año
Translator.php b6131e421c 提交 hace 1 año
TranslatorBagInterface.php b6131e421c 提交 hace 1 año
TranslatorInterface.php b6131e421c 提交 hace 1 año
composer.json b6131e421c 提交 hace 1 año

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