xieruidong aa6a296225 merchant vor 2 Jahren
..
Catalogue a92a1834a2 1 vor 2 Jahren
Command a92a1834a2 1 vor 2 Jahren
DataCollector a92a1834a2 1 vor 2 Jahren
DependencyInjection a92a1834a2 1 vor 2 Jahren
Dumper a92a1834a2 1 vor 2 Jahren
Exception a92a1834a2 1 vor 2 Jahren
Extractor a92a1834a2 1 vor 2 Jahren
Formatter a92a1834a2 1 vor 2 Jahren
Loader a92a1834a2 1 vor 2 Jahren
Provider a92a1834a2 1 vor 2 Jahren
Reader a92a1834a2 1 vor 2 Jahren
Resources aa6a296225 merchant vor 2 Jahren
Test a92a1834a2 1 vor 2 Jahren
Util a92a1834a2 1 vor 2 Jahren
Writer a92a1834a2 1 vor 2 Jahren
CHANGELOG.md a92a1834a2 1 vor 2 Jahren
DataCollectorTranslator.php a92a1834a2 1 vor 2 Jahren
IdentityTranslator.php a92a1834a2 1 vor 2 Jahren
LICENSE aa6a296225 merchant vor 2 Jahren
LoggingTranslator.php a92a1834a2 1 vor 2 Jahren
MessageCatalogue.php a92a1834a2 1 vor 2 Jahren
MessageCatalogueInterface.php a92a1834a2 1 vor 2 Jahren
MetadataAwareInterface.php a92a1834a2 1 vor 2 Jahren
PseudoLocalizationTranslator.php a92a1834a2 1 vor 2 Jahren
README.md a92a1834a2 1 vor 2 Jahren
TranslatableMessage.php a92a1834a2 1 vor 2 Jahren
Translator.php a92a1834a2 1 vor 2 Jahren
TranslatorBag.php a92a1834a2 1 vor 2 Jahren
TranslatorBagInterface.php a92a1834a2 1 vor 2 Jahren
composer.json a92a1834a2 1 vor 2 Jahren

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