ss 33d2a96cf2 初始化 5 ay önce
..
Catalogue 33d2a96cf2 初始化 5 ay önce
Command 33d2a96cf2 初始化 5 ay önce
DataCollector 33d2a96cf2 初始化 5 ay önce
DependencyInjection 33d2a96cf2 初始化 5 ay önce
Dumper 33d2a96cf2 初始化 5 ay önce
Exception 33d2a96cf2 初始化 5 ay önce
Extractor 33d2a96cf2 初始化 5 ay önce
Formatter 33d2a96cf2 初始化 5 ay önce
Loader 33d2a96cf2 初始化 5 ay önce
Reader 33d2a96cf2 初始化 5 ay önce
Resources 33d2a96cf2 初始化 5 ay önce
Util 33d2a96cf2 初始化 5 ay önce
Writer 33d2a96cf2 初始化 5 ay önce
CHANGELOG.md 33d2a96cf2 初始化 5 ay önce
DataCollectorTranslator.php 33d2a96cf2 初始化 5 ay önce
IdentityTranslator.php 33d2a96cf2 初始化 5 ay önce
Interval.php 33d2a96cf2 初始化 5 ay önce
LICENSE 33d2a96cf2 初始化 5 ay önce
LoggingTranslator.php 33d2a96cf2 初始化 5 ay önce
MessageCatalogue.php 33d2a96cf2 初始化 5 ay önce
MessageCatalogueInterface.php 33d2a96cf2 初始化 5 ay önce
MessageSelector.php 33d2a96cf2 初始化 5 ay önce
MetadataAwareInterface.php 33d2a96cf2 初始化 5 ay önce
PluralizationRules.php 33d2a96cf2 初始化 5 ay önce
README.md 33d2a96cf2 初始化 5 ay önce
Translator.php 33d2a96cf2 初始化 5 ay önce
TranslatorBagInterface.php 33d2a96cf2 初始化 5 ay önce
TranslatorInterface.php 33d2a96cf2 初始化 5 ay önce
composer.json 33d2a96cf2 初始化 5 ay önce

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