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

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