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

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