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