unknown abd0e89a86 second commit 2 maanden geleden
..
Catalogue abd0e89a86 second commit 2 maanden geleden
Command abd0e89a86 second commit 2 maanden geleden
DataCollector abd0e89a86 second commit 2 maanden geleden
DependencyInjection abd0e89a86 second commit 2 maanden geleden
Dumper abd0e89a86 second commit 2 maanden geleden
Exception abd0e89a86 second commit 2 maanden geleden
Extractor abd0e89a86 second commit 2 maanden geleden
Formatter abd0e89a86 second commit 2 maanden geleden
Loader abd0e89a86 second commit 2 maanden geleden
Provider abd0e89a86 second commit 2 maanden geleden
Reader abd0e89a86 second commit 2 maanden geleden
Resources abd0e89a86 second commit 2 maanden geleden
Test abd0e89a86 second commit 2 maanden geleden
Util abd0e89a86 second commit 2 maanden geleden
Writer abd0e89a86 second commit 2 maanden geleden
CHANGELOG.md abd0e89a86 second commit 2 maanden geleden
CatalogueMetadataAwareInterface.php abd0e89a86 second commit 2 maanden geleden
DataCollectorTranslator.php abd0e89a86 second commit 2 maanden geleden
IdentityTranslator.php abd0e89a86 second commit 2 maanden geleden
LICENSE abd0e89a86 second commit 2 maanden geleden
LocaleSwitcher.php abd0e89a86 second commit 2 maanden geleden
LoggingTranslator.php abd0e89a86 second commit 2 maanden geleden
MessageCatalogue.php abd0e89a86 second commit 2 maanden geleden
MessageCatalogueInterface.php abd0e89a86 second commit 2 maanden geleden
MetadataAwareInterface.php abd0e89a86 second commit 2 maanden geleden
PseudoLocalizationTranslator.php abd0e89a86 second commit 2 maanden geleden
README.md abd0e89a86 second commit 2 maanden geleden
StaticMessage.php abd0e89a86 second commit 2 maanden geleden
TranslatableMessage.php abd0e89a86 second commit 2 maanden geleden
Translator.php abd0e89a86 second commit 2 maanden geleden
TranslatorBag.php abd0e89a86 second commit 2 maanden geleden
TranslatorBagInterface.php abd0e89a86 second commit 2 maanden geleden
composer.json abd0e89a86 second commit 2 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

Help Symfony by sponsoring its development!

Resources