ss 394472f036 init пре 1 година
..
Catalogue 394472f036 init пре 1 година
Command 394472f036 init пре 1 година
DataCollector 394472f036 init пре 1 година
DependencyInjection 394472f036 init пре 1 година
Dumper 394472f036 init пре 1 година
Exception 394472f036 init пре 1 година
Extractor 394472f036 init пре 1 година
Formatter 394472f036 init пре 1 година
Loader 394472f036 init пре 1 година
Reader 394472f036 init пре 1 година
Resources 394472f036 init пре 1 година
Util 394472f036 init пре 1 година
Writer 394472f036 init пре 1 година
CHANGELOG.md 394472f036 init пре 1 година
DataCollectorTranslator.php 394472f036 init пре 1 година
IdentityTranslator.php 394472f036 init пре 1 година
Interval.php 394472f036 init пре 1 година
LICENSE 394472f036 init пре 1 година
LoggingTranslator.php 394472f036 init пре 1 година
MessageCatalogue.php 394472f036 init пре 1 година
MessageCatalogueInterface.php 394472f036 init пре 1 година
MessageSelector.php 394472f036 init пре 1 година
MetadataAwareInterface.php 394472f036 init пре 1 година
PluralizationRules.php 394472f036 init пре 1 година
README.md 394472f036 init пре 1 година
Translator.php 394472f036 init пре 1 година
TranslatorBagInterface.php 394472f036 init пре 1 година
TranslatorInterface.php 394472f036 init пре 1 година
composer.json 394472f036 init пре 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 ! »

Resources