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

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