one_after 0b792b2ff8 111 3 months ago
..
Catalogue 0b792b2ff8 111 3 months ago
Command 0b792b2ff8 111 3 months ago
DataCollector 0b792b2ff8 111 3 months ago
DependencyInjection 0b792b2ff8 111 3 months ago
Dumper 0b792b2ff8 111 3 months ago
Exception 0b792b2ff8 111 3 months ago
Extractor 0b792b2ff8 111 3 months ago
Formatter 0b792b2ff8 111 3 months ago
Loader 0b792b2ff8 111 3 months ago
Provider 0b792b2ff8 111 3 months ago
Reader 0b792b2ff8 111 3 months ago
Resources 0b792b2ff8 111 3 months ago
Test 0b792b2ff8 111 3 months ago
Util 0b792b2ff8 111 3 months ago
Writer 0b792b2ff8 111 3 months ago
CHANGELOG.md 0b792b2ff8 111 3 months ago
CatalogueMetadataAwareInterface.php 0b792b2ff8 111 3 months ago
DataCollectorTranslator.php 0b792b2ff8 111 3 months ago
IdentityTranslator.php 0b792b2ff8 111 3 months ago
LICENSE 0b792b2ff8 111 3 months ago
LocaleSwitcher.php 0b792b2ff8 111 3 months ago
LoggingTranslator.php 0b792b2ff8 111 3 months ago
MessageCatalogue.php 0b792b2ff8 111 3 months ago
MessageCatalogueInterface.php 0b792b2ff8 111 3 months ago
MetadataAwareInterface.php 0b792b2ff8 111 3 months ago
PseudoLocalizationTranslator.php 0b792b2ff8 111 3 months ago
README.md 0b792b2ff8 111 3 months ago
TranslatableMessage.php 0b792b2ff8 111 3 months ago
Translator.php 0b792b2ff8 111 3 months ago
TranslatorBag.php 0b792b2ff8 111 3 months ago
TranslatorBagInterface.php 0b792b2ff8 111 3 months ago
composer.json 0b792b2ff8 111 3 months 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 7.1 is backed by:

  • Crowdin, a cloud-based localization management software helping teams to go global and stay agile.

Help Symfony by sponsoring its development!

Resources