Kirin 80169d6661 first il y a 3 ans
..
Catalogue 80169d6661 first il y a 3 ans
Command 80169d6661 first il y a 3 ans
DataCollector 80169d6661 first il y a 3 ans
DependencyInjection 80169d6661 first il y a 3 ans
Dumper 80169d6661 first il y a 3 ans
Exception 80169d6661 first il y a 3 ans
Extractor 80169d6661 first il y a 3 ans
Formatter 80169d6661 first il y a 3 ans
Loader 80169d6661 first il y a 3 ans
Reader 80169d6661 first il y a 3 ans
Resources 80169d6661 first il y a 3 ans
Util 80169d6661 first il y a 3 ans
Writer 80169d6661 first il y a 3 ans
.gitattributes 80169d6661 first il y a 3 ans
CHANGELOG.md 80169d6661 first il y a 3 ans
DataCollectorTranslator.php 80169d6661 first il y a 3 ans
IdentityTranslator.php 80169d6661 first il y a 3 ans
LICENSE 80169d6661 first il y a 3 ans
LoggingTranslator.php 80169d6661 first il y a 3 ans
MessageCatalogue.php 80169d6661 first il y a 3 ans
MessageCatalogueInterface.php 80169d6661 first il y a 3 ans
MetadataAwareInterface.php 80169d6661 first il y a 3 ans
README.md 80169d6661 first il y a 3 ans
Translator.php 80169d6661 first il y a 3 ans
TranslatorBagInterface.php 80169d6661 first il y a 3 ans
composer.json 80169d6661 first il y a 3 ans

README.md

Translation Component

The Translation component provides tools to internationalize your application.

Getting Started

$ composer require symfony/translation
use Symfony\Component\Translation\Translator;

$translator = new Translator('fr_FR');
$translator->addResource('array', [
    'Hello World!' => 'Bonjour !',
], 'fr_FR');

echo $translator->trans('Hello World!'); // outputs « Bonjour ! »

Resources