urban d63a4904f9 trxbot il y a 3 mois
..
Catalogue d63a4904f9 trxbot il y a 3 mois
Command d63a4904f9 trxbot il y a 3 mois
DataCollector d63a4904f9 trxbot il y a 3 mois
DependencyInjection d63a4904f9 trxbot il y a 3 mois
Dumper d63a4904f9 trxbot il y a 3 mois
Exception d63a4904f9 trxbot il y a 3 mois
Extractor d63a4904f9 trxbot il y a 3 mois
Formatter d63a4904f9 trxbot il y a 3 mois
Loader d63a4904f9 trxbot il y a 3 mois
Provider d63a4904f9 trxbot il y a 3 mois
Reader d63a4904f9 trxbot il y a 3 mois
Resources d63a4904f9 trxbot il y a 3 mois
Test d63a4904f9 trxbot il y a 3 mois
Util d63a4904f9 trxbot il y a 3 mois
Writer d63a4904f9 trxbot il y a 3 mois
CHANGELOG.md d63a4904f9 trxbot il y a 3 mois
DataCollectorTranslator.php d63a4904f9 trxbot il y a 3 mois
IdentityTranslator.php d63a4904f9 trxbot il y a 3 mois
LICENSE d63a4904f9 trxbot il y a 3 mois
LoggingTranslator.php d63a4904f9 trxbot il y a 3 mois
MessageCatalogue.php d63a4904f9 trxbot il y a 3 mois
MessageCatalogueInterface.php d63a4904f9 trxbot il y a 3 mois
MetadataAwareInterface.php d63a4904f9 trxbot il y a 3 mois
PseudoLocalizationTranslator.php d63a4904f9 trxbot il y a 3 mois
README.md d63a4904f9 trxbot il y a 3 mois
TranslatableMessage.php d63a4904f9 trxbot il y a 3 mois
Translator.php d63a4904f9 trxbot il y a 3 mois
TranslatorBag.php d63a4904f9 trxbot il y a 3 mois
TranslatorBagInterface.php d63a4904f9 trxbot il y a 3 mois
composer.json d63a4904f9 trxbot il y a 3 mois

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