rkljw 2d74f709d7 news_producer 8 ay önce
..
Catalogue 2d74f709d7 news_producer 8 ay önce
Command 2d74f709d7 news_producer 8 ay önce
DataCollector 2d74f709d7 news_producer 8 ay önce
DependencyInjection 2d74f709d7 news_producer 8 ay önce
Dumper 2d74f709d7 news_producer 8 ay önce
Exception 2d74f709d7 news_producer 8 ay önce
Extractor 2d74f709d7 news_producer 8 ay önce
Formatter 2d74f709d7 news_producer 8 ay önce
Loader 2d74f709d7 news_producer 8 ay önce
Provider 2d74f709d7 news_producer 8 ay önce
Reader 2d74f709d7 news_producer 8 ay önce
Resources 2d74f709d7 news_producer 8 ay önce
Test 2d74f709d7 news_producer 8 ay önce
Util 2d74f709d7 news_producer 8 ay önce
Writer 2d74f709d7 news_producer 8 ay önce
CHANGELOG.md 2d74f709d7 news_producer 8 ay önce
CatalogueMetadataAwareInterface.php 2d74f709d7 news_producer 8 ay önce
DataCollectorTranslator.php 2d74f709d7 news_producer 8 ay önce
IdentityTranslator.php 2d74f709d7 news_producer 8 ay önce
LICENSE 2d74f709d7 news_producer 8 ay önce
LocaleSwitcher.php 2d74f709d7 news_producer 8 ay önce
LoggingTranslator.php 2d74f709d7 news_producer 8 ay önce
MessageCatalogue.php 2d74f709d7 news_producer 8 ay önce
MessageCatalogueInterface.php 2d74f709d7 news_producer 8 ay önce
MetadataAwareInterface.php 2d74f709d7 news_producer 8 ay önce
PseudoLocalizationTranslator.php 2d74f709d7 news_producer 8 ay önce
README.md 2d74f709d7 news_producer 8 ay önce
TranslatableMessage.php 2d74f709d7 news_producer 8 ay önce
Translator.php 2d74f709d7 news_producer 8 ay önce
TranslatorBag.php 2d74f709d7 news_producer 8 ay önce
TranslatorBagInterface.php 2d74f709d7 news_producer 8 ay önce
composer.json 2d74f709d7 news_producer 8 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 ! »

Sponsor

Help Symfony by sponsoring its development!

Resources