ss 394472f036 init 1 yıl önce
..
Catalogue 394472f036 init 1 yıl önce
Command 394472f036 init 1 yıl önce
DataCollector 394472f036 init 1 yıl önce
DependencyInjection 394472f036 init 1 yıl önce
Dumper 394472f036 init 1 yıl önce
Exception 394472f036 init 1 yıl önce
Extractor 394472f036 init 1 yıl önce
Formatter 394472f036 init 1 yıl önce
Loader 394472f036 init 1 yıl önce
Reader 394472f036 init 1 yıl önce
Resources 394472f036 init 1 yıl önce
Util 394472f036 init 1 yıl önce
Writer 394472f036 init 1 yıl önce
CHANGELOG.md 394472f036 init 1 yıl önce
DataCollectorTranslator.php 394472f036 init 1 yıl önce
IdentityTranslator.php 394472f036 init 1 yıl önce
Interval.php 394472f036 init 1 yıl önce
LICENSE 394472f036 init 1 yıl önce
LoggingTranslator.php 394472f036 init 1 yıl önce
MessageCatalogue.php 394472f036 init 1 yıl önce
MessageCatalogueInterface.php 394472f036 init 1 yıl önce
MessageSelector.php 394472f036 init 1 yıl önce
MetadataAwareInterface.php 394472f036 init 1 yıl önce
PluralizationRules.php 394472f036 init 1 yıl önce
README.md 394472f036 init 1 yıl önce
Translator.php 394472f036 init 1 yıl önce
TranslatorBagInterface.php 394472f036 init 1 yıl önce
TranslatorInterface.php 394472f036 init 1 yıl önce
composer.json 394472f036 init 1 yıl ö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