root f4b10b55a0 Initial commit 1 ماه پیش
..
Catalogue f4b10b55a0 Initial commit 1 ماه پیش
Command f4b10b55a0 Initial commit 1 ماه پیش
DataCollector f4b10b55a0 Initial commit 1 ماه پیش
DependencyInjection f4b10b55a0 Initial commit 1 ماه پیش
Dumper f4b10b55a0 Initial commit 1 ماه پیش
Exception f4b10b55a0 Initial commit 1 ماه پیش
Extractor f4b10b55a0 Initial commit 1 ماه پیش
Formatter f4b10b55a0 Initial commit 1 ماه پیش
Loader f4b10b55a0 Initial commit 1 ماه پیش
Provider f4b10b55a0 Initial commit 1 ماه پیش
Reader f4b10b55a0 Initial commit 1 ماه پیش
Resources f4b10b55a0 Initial commit 1 ماه پیش
Test f4b10b55a0 Initial commit 1 ماه پیش
Util f4b10b55a0 Initial commit 1 ماه پیش
Writer f4b10b55a0 Initial commit 1 ماه پیش
CHANGELOG.md f4b10b55a0 Initial commit 1 ماه پیش
DataCollectorTranslator.php f4b10b55a0 Initial commit 1 ماه پیش
IdentityTranslator.php f4b10b55a0 Initial commit 1 ماه پیش
LICENSE f4b10b55a0 Initial commit 1 ماه پیش
LoggingTranslator.php f4b10b55a0 Initial commit 1 ماه پیش
MessageCatalogue.php f4b10b55a0 Initial commit 1 ماه پیش
MessageCatalogueInterface.php f4b10b55a0 Initial commit 1 ماه پیش
MetadataAwareInterface.php f4b10b55a0 Initial commit 1 ماه پیش
PseudoLocalizationTranslator.php f4b10b55a0 Initial commit 1 ماه پیش
README.md f4b10b55a0 Initial commit 1 ماه پیش
TranslatableMessage.php f4b10b55a0 Initial commit 1 ماه پیش
Translator.php f4b10b55a0 Initial commit 1 ماه پیش
TranslatorBag.php f4b10b55a0 Initial commit 1 ماه پیش
TranslatorBagInterface.php f4b10b55a0 Initial commit 1 ماه پیش
composer.json f4b10b55a0 Initial commit 1 ماه پیش

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