ss 394472f036 init 1 سال پیش
..
Catalogue 394472f036 init 1 سال پیش
Command 394472f036 init 1 سال پیش
DataCollector 394472f036 init 1 سال پیش
DependencyInjection 394472f036 init 1 سال پیش
Dumper 394472f036 init 1 سال پیش
Exception 394472f036 init 1 سال پیش
Extractor 394472f036 init 1 سال پیش
Formatter 394472f036 init 1 سال پیش
Loader 394472f036 init 1 سال پیش
Reader 394472f036 init 1 سال پیش
Resources 394472f036 init 1 سال پیش
Util 394472f036 init 1 سال پیش
Writer 394472f036 init 1 سال پیش
CHANGELOG.md 394472f036 init 1 سال پیش
DataCollectorTranslator.php 394472f036 init 1 سال پیش
IdentityTranslator.php 394472f036 init 1 سال پیش
Interval.php 394472f036 init 1 سال پیش
LICENSE 394472f036 init 1 سال پیش
LoggingTranslator.php 394472f036 init 1 سال پیش
MessageCatalogue.php 394472f036 init 1 سال پیش
MessageCatalogueInterface.php 394472f036 init 1 سال پیش
MessageSelector.php 394472f036 init 1 سال پیش
MetadataAwareInterface.php 394472f036 init 1 سال پیش
PluralizationRules.php 394472f036 init 1 سال پیش
README.md 394472f036 init 1 سال پیش
Translator.php 394472f036 init 1 سال پیش
TranslatorBagInterface.php 394472f036 init 1 سال پیش
TranslatorInterface.php 394472f036 init 1 سال پیش
composer.json 394472f036 init 1 سال پیش

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