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