王大坤 a9c8392d8b 正式服代码首次提交 1 éve
..
Catalogue a9c8392d8b 正式服代码首次提交 1 éve
Command a9c8392d8b 正式服代码首次提交 1 éve
DataCollector a9c8392d8b 正式服代码首次提交 1 éve
DependencyInjection a9c8392d8b 正式服代码首次提交 1 éve
Dumper a9c8392d8b 正式服代码首次提交 1 éve
Exception a9c8392d8b 正式服代码首次提交 1 éve
Extractor a9c8392d8b 正式服代码首次提交 1 éve
Formatter a9c8392d8b 正式服代码首次提交 1 éve
Loader a9c8392d8b 正式服代码首次提交 1 éve
Provider a9c8392d8b 正式服代码首次提交 1 éve
Reader a9c8392d8b 正式服代码首次提交 1 éve
Resources a9c8392d8b 正式服代码首次提交 1 éve
Test a9c8392d8b 正式服代码首次提交 1 éve
Util a9c8392d8b 正式服代码首次提交 1 éve
Writer a9c8392d8b 正式服代码首次提交 1 éve
CHANGELOG.md a9c8392d8b 正式服代码首次提交 1 éve
DataCollectorTranslator.php a9c8392d8b 正式服代码首次提交 1 éve
IdentityTranslator.php a9c8392d8b 正式服代码首次提交 1 éve
LICENSE a9c8392d8b 正式服代码首次提交 1 éve
LoggingTranslator.php a9c8392d8b 正式服代码首次提交 1 éve
MessageCatalogue.php a9c8392d8b 正式服代码首次提交 1 éve
MessageCatalogueInterface.php a9c8392d8b 正式服代码首次提交 1 éve
MetadataAwareInterface.php a9c8392d8b 正式服代码首次提交 1 éve
PseudoLocalizationTranslator.php a9c8392d8b 正式服代码首次提交 1 éve
README.md a9c8392d8b 正式服代码首次提交 1 éve
TranslatableMessage.php a9c8392d8b 正式服代码首次提交 1 éve
Translator.php a9c8392d8b 正式服代码首次提交 1 éve
TranslatorBag.php a9c8392d8b 正式服代码首次提交 1 éve
TranslatorBagInterface.php a9c8392d8b 正式服代码首次提交 1 éve
composer.json a9c8392d8b 正式服代码首次提交 1 éve

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