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