刘远航 94eefae904 vendor il y a 4 ans
..
Catalogue 94eefae904 vendor il y a 4 ans
Command 94eefae904 vendor il y a 4 ans
DataCollector 94eefae904 vendor il y a 4 ans
DependencyInjection 94eefae904 vendor il y a 4 ans
Dumper 94eefae904 vendor il y a 4 ans
Exception 94eefae904 vendor il y a 4 ans
Extractor 94eefae904 vendor il y a 4 ans
Formatter 94eefae904 vendor il y a 4 ans
Loader 94eefae904 vendor il y a 4 ans
Reader 94eefae904 vendor il y a 4 ans
Resources 94eefae904 vendor il y a 4 ans
Util 94eefae904 vendor il y a 4 ans
Writer 94eefae904 vendor il y a 4 ans
CHANGELOG.md 94eefae904 vendor il y a 4 ans
DataCollectorTranslator.php 94eefae904 vendor il y a 4 ans
IdentityTranslator.php 94eefae904 vendor il y a 4 ans
Interval.php 94eefae904 vendor il y a 4 ans
LICENSE 94eefae904 vendor il y a 4 ans
LoggingTranslator.php 94eefae904 vendor il y a 4 ans
MessageCatalogue.php 94eefae904 vendor il y a 4 ans
MessageCatalogueInterface.php 94eefae904 vendor il y a 4 ans
MessageSelector.php 94eefae904 vendor il y a 4 ans
MetadataAwareInterface.php 94eefae904 vendor il y a 4 ans
PluralizationRules.php 94eefae904 vendor il y a 4 ans
README.md 94eefae904 vendor il y a 4 ans
Translator.php 94eefae904 vendor il y a 4 ans
TranslatorBagInterface.php 94eefae904 vendor il y a 4 ans
TranslatorInterface.php 94eefae904 vendor il y a 4 ans
composer.json 94eefae904 vendor il y a 4 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