devn00b c2c6bf7610 Initial Upload of Bot 1 year ago
..
Catalogue c2c6bf7610 Initial Upload of Bot 1 year ago
Command c2c6bf7610 Initial Upload of Bot 1 year ago
DataCollector c2c6bf7610 Initial Upload of Bot 1 year ago
DependencyInjection c2c6bf7610 Initial Upload of Bot 1 year ago
Dumper c2c6bf7610 Initial Upload of Bot 1 year ago
Exception c2c6bf7610 Initial Upload of Bot 1 year ago
Extractor c2c6bf7610 Initial Upload of Bot 1 year ago
Formatter c2c6bf7610 Initial Upload of Bot 1 year ago
Loader c2c6bf7610 Initial Upload of Bot 1 year ago
Provider c2c6bf7610 Initial Upload of Bot 1 year ago
Reader c2c6bf7610 Initial Upload of Bot 1 year ago
Resources c2c6bf7610 Initial Upload of Bot 1 year ago
Test c2c6bf7610 Initial Upload of Bot 1 year ago
Util c2c6bf7610 Initial Upload of Bot 1 year ago
Writer c2c6bf7610 Initial Upload of Bot 1 year ago
CHANGELOG.md c2c6bf7610 Initial Upload of Bot 1 year ago
DataCollectorTranslator.php c2c6bf7610 Initial Upload of Bot 1 year ago
IdentityTranslator.php c2c6bf7610 Initial Upload of Bot 1 year ago
LICENSE c2c6bf7610 Initial Upload of Bot 1 year ago
LoggingTranslator.php c2c6bf7610 Initial Upload of Bot 1 year ago
MessageCatalogue.php c2c6bf7610 Initial Upload of Bot 1 year ago
MessageCatalogueInterface.php c2c6bf7610 Initial Upload of Bot 1 year ago
MetadataAwareInterface.php c2c6bf7610 Initial Upload of Bot 1 year ago
PseudoLocalizationTranslator.php c2c6bf7610 Initial Upload of Bot 1 year ago
README.md c2c6bf7610 Initial Upload of Bot 1 year ago
TranslatableMessage.php c2c6bf7610 Initial Upload of Bot 1 year ago
Translator.php c2c6bf7610 Initial Upload of Bot 1 year ago
TranslatorBag.php c2c6bf7610 Initial Upload of Bot 1 year ago
TranslatorBagInterface.php c2c6bf7610 Initial Upload of Bot 1 year ago
composer.json c2c6bf7610 Initial Upload of Bot 1 year ago

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