Musa 4547782a4a first commit 10 maanden geleden
..
Catalogue 4547782a4a first commit 10 maanden geleden
Command 4547782a4a first commit 10 maanden geleden
DataCollector 4547782a4a first commit 10 maanden geleden
DependencyInjection 4547782a4a first commit 10 maanden geleden
Dumper 4547782a4a first commit 10 maanden geleden
Exception 4547782a4a first commit 10 maanden geleden
Extractor 4547782a4a first commit 10 maanden geleden
Formatter 4547782a4a first commit 10 maanden geleden
Loader 4547782a4a first commit 10 maanden geleden
Provider 4547782a4a first commit 10 maanden geleden
Reader 4547782a4a first commit 10 maanden geleden
Resources 4547782a4a first commit 10 maanden geleden
Test 4547782a4a first commit 10 maanden geleden
Util 4547782a4a first commit 10 maanden geleden
Writer 4547782a4a first commit 10 maanden geleden
CHANGELOG.md 4547782a4a first commit 10 maanden geleden
CatalogueMetadataAwareInterface.php 4547782a4a first commit 10 maanden geleden
DataCollectorTranslator.php 4547782a4a first commit 10 maanden geleden
IdentityTranslator.php 4547782a4a first commit 10 maanden geleden
LICENSE 4547782a4a first commit 10 maanden geleden
LocaleSwitcher.php 4547782a4a first commit 10 maanden geleden
LoggingTranslator.php 4547782a4a first commit 10 maanden geleden
MessageCatalogue.php 4547782a4a first commit 10 maanden geleden
MessageCatalogueInterface.php 4547782a4a first commit 10 maanden geleden
MetadataAwareInterface.php 4547782a4a first commit 10 maanden geleden
PseudoLocalizationTranslator.php 4547782a4a first commit 10 maanden geleden
README.md 4547782a4a first commit 10 maanden geleden
TranslatableMessage.php 4547782a4a first commit 10 maanden geleden
Translator.php 4547782a4a first commit 10 maanden geleden
TranslatorBag.php 4547782a4a first commit 10 maanden geleden
TranslatorBagInterface.php 4547782a4a first commit 10 maanden geleden
composer.json 4547782a4a first commit 10 maanden geleden

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