xieruidong aa6a296225 merchant il y a 2 ans
..
Catalogue a92a1834a2 1 il y a 2 ans
Command a92a1834a2 1 il y a 2 ans
DataCollector a92a1834a2 1 il y a 2 ans
DependencyInjection a92a1834a2 1 il y a 2 ans
Dumper a92a1834a2 1 il y a 2 ans
Exception a92a1834a2 1 il y a 2 ans
Extractor a92a1834a2 1 il y a 2 ans
Formatter a92a1834a2 1 il y a 2 ans
Loader a92a1834a2 1 il y a 2 ans
Provider a92a1834a2 1 il y a 2 ans
Reader a92a1834a2 1 il y a 2 ans
Resources aa6a296225 merchant il y a 2 ans
Test a92a1834a2 1 il y a 2 ans
Util a92a1834a2 1 il y a 2 ans
Writer a92a1834a2 1 il y a 2 ans
CHANGELOG.md a92a1834a2 1 il y a 2 ans
DataCollectorTranslator.php a92a1834a2 1 il y a 2 ans
IdentityTranslator.php a92a1834a2 1 il y a 2 ans
LICENSE aa6a296225 merchant il y a 2 ans
LoggingTranslator.php a92a1834a2 1 il y a 2 ans
MessageCatalogue.php a92a1834a2 1 il y a 2 ans
MessageCatalogueInterface.php a92a1834a2 1 il y a 2 ans
MetadataAwareInterface.php a92a1834a2 1 il y a 2 ans
PseudoLocalizationTranslator.php a92a1834a2 1 il y a 2 ans
README.md a92a1834a2 1 il y a 2 ans
TranslatableMessage.php a92a1834a2 1 il y a 2 ans
Translator.php a92a1834a2 1 il y a 2 ans
TranslatorBag.php a92a1834a2 1 il y a 2 ans
TranslatorBagInterface.php a92a1834a2 1 il y a 2 ans
composer.json a92a1834a2 1 il y a 2 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;
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

The Translation component for Symfony 5.4/6.0 is backed by:

  • Crowdin, a cloud-based localization management software helping teams to go global and stay agile.
  • Lokalise, a continuous localization and translation management platform that integrates into your development workflow so you can ship localized products, faster.

Help Symfony by sponsoring its development!

Resources