ss 33d2a96cf2 初始化 8 ماه پیش
..
Catalogue 33d2a96cf2 初始化 8 ماه پیش
Command 33d2a96cf2 初始化 8 ماه پیش
DataCollector 33d2a96cf2 初始化 8 ماه پیش
DependencyInjection 33d2a96cf2 初始化 8 ماه پیش
Dumper 33d2a96cf2 初始化 8 ماه پیش
Exception 33d2a96cf2 初始化 8 ماه پیش
Extractor 33d2a96cf2 初始化 8 ماه پیش
Formatter 33d2a96cf2 初始化 8 ماه پیش
Loader 33d2a96cf2 初始化 8 ماه پیش
Reader 33d2a96cf2 初始化 8 ماه پیش
Resources 33d2a96cf2 初始化 8 ماه پیش
Util 33d2a96cf2 初始化 8 ماه پیش
Writer 33d2a96cf2 初始化 8 ماه پیش
CHANGELOG.md 33d2a96cf2 初始化 8 ماه پیش
DataCollectorTranslator.php 33d2a96cf2 初始化 8 ماه پیش
IdentityTranslator.php 33d2a96cf2 初始化 8 ماه پیش
Interval.php 33d2a96cf2 初始化 8 ماه پیش
LICENSE 33d2a96cf2 初始化 8 ماه پیش
LoggingTranslator.php 33d2a96cf2 初始化 8 ماه پیش
MessageCatalogue.php 33d2a96cf2 初始化 8 ماه پیش
MessageCatalogueInterface.php 33d2a96cf2 初始化 8 ماه پیش
MessageSelector.php 33d2a96cf2 初始化 8 ماه پیش
MetadataAwareInterface.php 33d2a96cf2 初始化 8 ماه پیش
PluralizationRules.php 33d2a96cf2 初始化 8 ماه پیش
README.md 33d2a96cf2 初始化 8 ماه پیش
Translator.php 33d2a96cf2 初始化 8 ماه پیش
TranslatorBagInterface.php 33d2a96cf2 初始化 8 ماه پیش
TranslatorInterface.php 33d2a96cf2 初始化 8 ماه پیش
composer.json 33d2a96cf2 初始化 8 ماه پیش

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