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