unknown abd0e89a86 second commit 1 ماه پیش
..
Catalogue abd0e89a86 second commit 1 ماه پیش
Command abd0e89a86 second commit 1 ماه پیش
DataCollector abd0e89a86 second commit 1 ماه پیش
DependencyInjection abd0e89a86 second commit 1 ماه پیش
Dumper abd0e89a86 second commit 1 ماه پیش
Exception abd0e89a86 second commit 1 ماه پیش
Extractor abd0e89a86 second commit 1 ماه پیش
Formatter abd0e89a86 second commit 1 ماه پیش
Loader abd0e89a86 second commit 1 ماه پیش
Provider abd0e89a86 second commit 1 ماه پیش
Reader abd0e89a86 second commit 1 ماه پیش
Resources abd0e89a86 second commit 1 ماه پیش
Test abd0e89a86 second commit 1 ماه پیش
Util abd0e89a86 second commit 1 ماه پیش
Writer abd0e89a86 second commit 1 ماه پیش
CHANGELOG.md abd0e89a86 second commit 1 ماه پیش
CatalogueMetadataAwareInterface.php abd0e89a86 second commit 1 ماه پیش
DataCollectorTranslator.php abd0e89a86 second commit 1 ماه پیش
IdentityTranslator.php abd0e89a86 second commit 1 ماه پیش
LICENSE abd0e89a86 second commit 1 ماه پیش
LocaleSwitcher.php abd0e89a86 second commit 1 ماه پیش
LoggingTranslator.php abd0e89a86 second commit 1 ماه پیش
MessageCatalogue.php abd0e89a86 second commit 1 ماه پیش
MessageCatalogueInterface.php abd0e89a86 second commit 1 ماه پیش
MetadataAwareInterface.php abd0e89a86 second commit 1 ماه پیش
PseudoLocalizationTranslator.php abd0e89a86 second commit 1 ماه پیش
README.md abd0e89a86 second commit 1 ماه پیش
StaticMessage.php abd0e89a86 second commit 1 ماه پیش
TranslatableMessage.php abd0e89a86 second commit 1 ماه پیش
Translator.php abd0e89a86 second commit 1 ماه پیش
TranslatorBag.php abd0e89a86 second commit 1 ماه پیش
TranslatorBagInterface.php abd0e89a86 second commit 1 ماه پیش
composer.json abd0e89a86 second 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

Help Symfony by sponsoring its development!

Resources