ss 394472f036 init před 5 měsíci
..
Catalogue 394472f036 init před 5 měsíci
Command 394472f036 init před 5 měsíci
DataCollector 394472f036 init před 5 měsíci
DependencyInjection 394472f036 init před 5 měsíci
Dumper 394472f036 init před 5 měsíci
Exception 394472f036 init před 5 měsíci
Extractor 394472f036 init před 5 měsíci
Formatter 394472f036 init před 5 měsíci
Loader 394472f036 init před 5 měsíci
Reader 394472f036 init před 5 měsíci
Resources 394472f036 init před 5 měsíci
Util 394472f036 init před 5 měsíci
Writer 394472f036 init před 5 měsíci
CHANGELOG.md 394472f036 init před 5 měsíci
DataCollectorTranslator.php 394472f036 init před 5 měsíci
IdentityTranslator.php 394472f036 init před 5 měsíci
Interval.php 394472f036 init před 5 měsíci
LICENSE 394472f036 init před 5 měsíci
LoggingTranslator.php 394472f036 init před 5 měsíci
MessageCatalogue.php 394472f036 init před 5 měsíci
MessageCatalogueInterface.php 394472f036 init před 5 měsíci
MessageSelector.php 394472f036 init před 5 měsíci
MetadataAwareInterface.php 394472f036 init před 5 měsíci
PluralizationRules.php 394472f036 init před 5 měsíci
README.md 394472f036 init před 5 měsíci
Translator.php 394472f036 init před 5 měsíci
TranslatorBagInterface.php 394472f036 init před 5 měsíci
TranslatorInterface.php 394472f036 init před 5 měsíci
composer.json 394472f036 init před 5 měsíci

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