zz ca8126a759 项目初始化 il y a 1 semaine
..
Catalogue ca8126a759 项目初始化 il y a 1 semaine
Command ca8126a759 项目初始化 il y a 1 semaine
DataCollector ca8126a759 项目初始化 il y a 1 semaine
DependencyInjection ca8126a759 项目初始化 il y a 1 semaine
Dumper ca8126a759 项目初始化 il y a 1 semaine
Exception ca8126a759 项目初始化 il y a 1 semaine
Extractor ca8126a759 项目初始化 il y a 1 semaine
Formatter ca8126a759 项目初始化 il y a 1 semaine
Loader ca8126a759 项目初始化 il y a 1 semaine
Provider ca8126a759 项目初始化 il y a 1 semaine
Reader ca8126a759 项目初始化 il y a 1 semaine
Resources ca8126a759 项目初始化 il y a 1 semaine
Test ca8126a759 项目初始化 il y a 1 semaine
Util ca8126a759 项目初始化 il y a 1 semaine
Writer ca8126a759 项目初始化 il y a 1 semaine
CHANGELOG.md ca8126a759 项目初始化 il y a 1 semaine
DataCollectorTranslator.php ca8126a759 项目初始化 il y a 1 semaine
IdentityTranslator.php ca8126a759 项目初始化 il y a 1 semaine
LICENSE ca8126a759 项目初始化 il y a 1 semaine
LoggingTranslator.php ca8126a759 项目初始化 il y a 1 semaine
MessageCatalogue.php ca8126a759 项目初始化 il y a 1 semaine
MessageCatalogueInterface.php ca8126a759 项目初始化 il y a 1 semaine
MetadataAwareInterface.php ca8126a759 项目初始化 il y a 1 semaine
PseudoLocalizationTranslator.php ca8126a759 项目初始化 il y a 1 semaine
README.md ca8126a759 项目初始化 il y a 1 semaine
TranslatableMessage.php ca8126a759 项目初始化 il y a 1 semaine
Translator.php ca8126a759 项目初始化 il y a 1 semaine
TranslatorBag.php ca8126a759 项目初始化 il y a 1 semaine
TranslatorBagInterface.php ca8126a759 项目初始化 il y a 1 semaine
composer.json ca8126a759 项目初始化 il y a 1 semaine

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