lizhen_gitee 414078cafe vendor加入版本库 1 năm trước cách đây
..
Catalogue 414078cafe vendor加入版本库 1 năm trước cách đây
Command 414078cafe vendor加入版本库 1 năm trước cách đây
DataCollector 414078cafe vendor加入版本库 1 năm trước cách đây
DependencyInjection 414078cafe vendor加入版本库 1 năm trước cách đây
Dumper 414078cafe vendor加入版本库 1 năm trước cách đây
Exception 414078cafe vendor加入版本库 1 năm trước cách đây
Extractor 414078cafe vendor加入版本库 1 năm trước cách đây
Formatter 414078cafe vendor加入版本库 1 năm trước cách đây
Loader 414078cafe vendor加入版本库 1 năm trước cách đây
Provider 414078cafe vendor加入版本库 1 năm trước cách đây
Reader 414078cafe vendor加入版本库 1 năm trước cách đây
Resources 414078cafe vendor加入版本库 1 năm trước cách đây
Test 414078cafe vendor加入版本库 1 năm trước cách đây
Util 414078cafe vendor加入版本库 1 năm trước cách đây
Writer 414078cafe vendor加入版本库 1 năm trước cách đây
CHANGELOG.md 414078cafe vendor加入版本库 1 năm trước cách đây
DataCollectorTranslator.php 414078cafe vendor加入版本库 1 năm trước cách đây
IdentityTranslator.php 414078cafe vendor加入版本库 1 năm trước cách đây
LICENSE 414078cafe vendor加入版本库 1 năm trước cách đây
LoggingTranslator.php 414078cafe vendor加入版本库 1 năm trước cách đây
MessageCatalogue.php 414078cafe vendor加入版本库 1 năm trước cách đây
MessageCatalogueInterface.php 414078cafe vendor加入版本库 1 năm trước cách đây
MetadataAwareInterface.php 414078cafe vendor加入版本库 1 năm trước cách đây
PseudoLocalizationTranslator.php 414078cafe vendor加入版本库 1 năm trước cách đây
README.md 414078cafe vendor加入版本库 1 năm trước cách đây
TranslatableMessage.php 414078cafe vendor加入版本库 1 năm trước cách đây
Translator.php 414078cafe vendor加入版本库 1 năm trước cách đây
TranslatorBag.php 414078cafe vendor加入版本库 1 năm trước cách đây
TranslatorBagInterface.php 414078cafe vendor加入版本库 1 năm trước cách đây
composer.json 414078cafe vendor加入版本库 1 năm trước cách đây

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