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

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