urban d63a4904f9 trxbot před 10 měsíci
..
Catalogue d63a4904f9 trxbot před 10 měsíci
Command d63a4904f9 trxbot před 10 měsíci
DataCollector d63a4904f9 trxbot před 10 měsíci
DependencyInjection d63a4904f9 trxbot před 10 měsíci
Dumper d63a4904f9 trxbot před 10 měsíci
Exception d63a4904f9 trxbot před 10 měsíci
Extractor d63a4904f9 trxbot před 10 měsíci
Formatter d63a4904f9 trxbot před 10 měsíci
Loader d63a4904f9 trxbot před 10 měsíci
Provider d63a4904f9 trxbot před 10 měsíci
Reader d63a4904f9 trxbot před 10 měsíci
Resources d63a4904f9 trxbot před 10 měsíci
Test d63a4904f9 trxbot před 10 měsíci
Util d63a4904f9 trxbot před 10 měsíci
Writer d63a4904f9 trxbot před 10 měsíci
CHANGELOG.md d63a4904f9 trxbot před 10 měsíci
DataCollectorTranslator.php d63a4904f9 trxbot před 10 měsíci
IdentityTranslator.php d63a4904f9 trxbot před 10 měsíci
LICENSE d63a4904f9 trxbot před 10 měsíci
LoggingTranslator.php d63a4904f9 trxbot před 10 měsíci
MessageCatalogue.php d63a4904f9 trxbot před 10 měsíci
MessageCatalogueInterface.php d63a4904f9 trxbot před 10 měsíci
MetadataAwareInterface.php d63a4904f9 trxbot před 10 měsíci
PseudoLocalizationTranslator.php d63a4904f9 trxbot před 10 měsíci
README.md d63a4904f9 trxbot před 10 měsíci
TranslatableMessage.php d63a4904f9 trxbot před 10 měsíci
Translator.php d63a4904f9 trxbot před 10 měsíci
TranslatorBag.php d63a4904f9 trxbot před 10 měsíci
TranslatorBagInterface.php d63a4904f9 trxbot před 10 měsíci
composer.json d63a4904f9 trxbot před 10 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 ! »

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