urban 5cc30c4fee first commit vor 3 Wochen
..
Catalogue 5cc30c4fee first commit vor 3 Wochen
Command 5cc30c4fee first commit vor 3 Wochen
DataCollector 5cc30c4fee first commit vor 3 Wochen
DependencyInjection 5cc30c4fee first commit vor 3 Wochen
Dumper 5cc30c4fee first commit vor 3 Wochen
Exception 5cc30c4fee first commit vor 3 Wochen
Extractor 5cc30c4fee first commit vor 3 Wochen
Formatter 5cc30c4fee first commit vor 3 Wochen
Loader 5cc30c4fee first commit vor 3 Wochen
Provider 5cc30c4fee first commit vor 3 Wochen
Reader 5cc30c4fee first commit vor 3 Wochen
Resources 5cc30c4fee first commit vor 3 Wochen
Test 5cc30c4fee first commit vor 3 Wochen
Util 5cc30c4fee first commit vor 3 Wochen
Writer 5cc30c4fee first commit vor 3 Wochen
CHANGELOG.md 5cc30c4fee first commit vor 3 Wochen
DataCollectorTranslator.php 5cc30c4fee first commit vor 3 Wochen
IdentityTranslator.php 5cc30c4fee first commit vor 3 Wochen
LICENSE 5cc30c4fee first commit vor 3 Wochen
LoggingTranslator.php 5cc30c4fee first commit vor 3 Wochen
MessageCatalogue.php 5cc30c4fee first commit vor 3 Wochen
MessageCatalogueInterface.php 5cc30c4fee first commit vor 3 Wochen
MetadataAwareInterface.php 5cc30c4fee first commit vor 3 Wochen
PseudoLocalizationTranslator.php 5cc30c4fee first commit vor 3 Wochen
README.md 5cc30c4fee first commit vor 3 Wochen
TranslatableMessage.php 5cc30c4fee first commit vor 3 Wochen
Translator.php 5cc30c4fee first commit vor 3 Wochen
TranslatorBag.php 5cc30c4fee first commit vor 3 Wochen
TranslatorBagInterface.php 5cc30c4fee first commit vor 3 Wochen
composer.json 5cc30c4fee first commit vor 3 Wochen

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