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