Dmitriy Gnatenko 2c154caeca Vendors updated пре 3 година
..
Catalogue 2e430a556d Vendors updated пре 3 година
Command 2e430a556d Vendors updated пре 3 година
DataCollector e5f3fbd37b Vendors updated пре 3 година
DependencyInjection 0b8749ecf8 Update vendors пре 3 година
Dumper 2e430a556d Vendors updated пре 3 година
Exception da31d8a6df Revert "Vendors updated" пре 4 година
Extractor 2e430a556d Vendors updated пре 3 година
Formatter da31d8a6df Revert "Vendors updated" пре 4 година
Loader 2e430a556d Vendors updated пре 3 година
Reader da31d8a6df Revert "Vendors updated" пре 4 година
Resources 2e430a556d Vendors updated пре 3 година
Util 0b8749ecf8 Update vendors пре 3 година
Writer da31d8a6df Revert "Vendors updated" пре 4 година
CHANGELOG.md 9329362bd0 Symfony updated to 5.2 пре 3 година
DataCollectorTranslator.php 0b8749ecf8 Update vendors пре 3 година
IdentityTranslator.php da31d8a6df Revert "Vendors updated" пре 4 година
LICENSE e5f3fbd37b Vendors updated пре 3 година
LoggingTranslator.php da31d8a6df Revert "Vendors updated" пре 4 година
MessageCatalogue.php 2c154caeca Vendors updated пре 3 година
MessageCatalogueInterface.php 0b8749ecf8 Update vendors пре 3 година
MetadataAwareInterface.php da31d8a6df Revert "Vendors updated" пре 4 година
PluralizationRules.php e5f3fbd37b Vendors updated пре 3 година
PseudoLocalizationTranslator.php 9329362bd0 Symfony updated to 5.2 пре 3 година
README.md e5f3fbd37b Vendors updated пре 3 година
TranslatableMessage.php 9329362bd0 Symfony updated to 5.2 пре 3 година
Translator.php 9329362bd0 Symfony updated to 5.2 пре 3 година
TranslatorBagInterface.php da31d8a6df Revert "Vendors updated" пре 4 година
composer.json 2e430a556d Vendors updated пре 3 година

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 ! »

Resources