xieruidong aa6a296225 merchant 2 years ago
..
Catalogue a92a1834a2 1 2 years ago
Command a92a1834a2 1 2 years ago
DataCollector a92a1834a2 1 2 years ago
DependencyInjection a92a1834a2 1 2 years ago
Dumper a92a1834a2 1 2 years ago
Exception a92a1834a2 1 2 years ago
Extractor a92a1834a2 1 2 years ago
Formatter a92a1834a2 1 2 years ago
Loader a92a1834a2 1 2 years ago
Provider a92a1834a2 1 2 years ago
Reader a92a1834a2 1 2 years ago
Resources aa6a296225 merchant 2 years ago
Test a92a1834a2 1 2 years ago
Util a92a1834a2 1 2 years ago
Writer a92a1834a2 1 2 years ago
CHANGELOG.md a92a1834a2 1 2 years ago
DataCollectorTranslator.php a92a1834a2 1 2 years ago
IdentityTranslator.php a92a1834a2 1 2 years ago
LICENSE aa6a296225 merchant 2 years ago
LoggingTranslator.php a92a1834a2 1 2 years ago
MessageCatalogue.php a92a1834a2 1 2 years ago
MessageCatalogueInterface.php a92a1834a2 1 2 years ago
MetadataAwareInterface.php a92a1834a2 1 2 years ago
PseudoLocalizationTranslator.php a92a1834a2 1 2 years ago
README.md a92a1834a2 1 2 years ago
TranslatableMessage.php a92a1834a2 1 2 years ago
Translator.php a92a1834a2 1 2 years ago
TranslatorBag.php a92a1834a2 1 2 years ago
TranslatorBagInterface.php a92a1834a2 1 2 years ago
composer.json a92a1834a2 1 2 years ago

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