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

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