devn00b c2c6bf7610 Initial Upload of Bot 1 سال پیش
..
Catalogue c2c6bf7610 Initial Upload of Bot 1 سال پیش
Command c2c6bf7610 Initial Upload of Bot 1 سال پیش
DataCollector c2c6bf7610 Initial Upload of Bot 1 سال پیش
DependencyInjection c2c6bf7610 Initial Upload of Bot 1 سال پیش
Dumper c2c6bf7610 Initial Upload of Bot 1 سال پیش
Exception c2c6bf7610 Initial Upload of Bot 1 سال پیش
Extractor c2c6bf7610 Initial Upload of Bot 1 سال پیش
Formatter c2c6bf7610 Initial Upload of Bot 1 سال پیش
Loader c2c6bf7610 Initial Upload of Bot 1 سال پیش
Provider c2c6bf7610 Initial Upload of Bot 1 سال پیش
Reader c2c6bf7610 Initial Upload of Bot 1 سال پیش
Resources c2c6bf7610 Initial Upload of Bot 1 سال پیش
Test c2c6bf7610 Initial Upload of Bot 1 سال پیش
Util c2c6bf7610 Initial Upload of Bot 1 سال پیش
Writer c2c6bf7610 Initial Upload of Bot 1 سال پیش
CHANGELOG.md c2c6bf7610 Initial Upload of Bot 1 سال پیش
DataCollectorTranslator.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
IdentityTranslator.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
LICENSE c2c6bf7610 Initial Upload of Bot 1 سال پیش
LoggingTranslator.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
MessageCatalogue.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
MessageCatalogueInterface.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
MetadataAwareInterface.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
PseudoLocalizationTranslator.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
README.md c2c6bf7610 Initial Upload of Bot 1 سال پیش
TranslatableMessage.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
Translator.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
TranslatorBag.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
TranslatorBagInterface.php c2c6bf7610 Initial Upload of Bot 1 سال پیش
composer.json c2c6bf7610 Initial Upload of Bot 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