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

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