lizhen_gitee 414078cafe vendor加入版本库 пре 1 година
..
Catalogue 414078cafe vendor加入版本库 пре 1 година
Command 414078cafe vendor加入版本库 пре 1 година
DataCollector 414078cafe vendor加入版本库 пре 1 година
DependencyInjection 414078cafe vendor加入版本库 пре 1 година
Dumper 414078cafe vendor加入版本库 пре 1 година
Exception 414078cafe vendor加入版本库 пре 1 година
Extractor 414078cafe vendor加入版本库 пре 1 година
Formatter 414078cafe vendor加入版本库 пре 1 година
Loader 414078cafe vendor加入版本库 пре 1 година
Provider 414078cafe vendor加入版本库 пре 1 година
Reader 414078cafe vendor加入版本库 пре 1 година
Resources 414078cafe vendor加入版本库 пре 1 година
Test 414078cafe vendor加入版本库 пре 1 година
Util 414078cafe vendor加入版本库 пре 1 година
Writer 414078cafe vendor加入版本库 пре 1 година
CHANGELOG.md 414078cafe vendor加入版本库 пре 1 година
DataCollectorTranslator.php 414078cafe vendor加入版本库 пре 1 година
IdentityTranslator.php 414078cafe vendor加入版本库 пре 1 година
LICENSE 414078cafe vendor加入版本库 пре 1 година
LoggingTranslator.php 414078cafe vendor加入版本库 пре 1 година
MessageCatalogue.php 414078cafe vendor加入版本库 пре 1 година
MessageCatalogueInterface.php 414078cafe vendor加入版本库 пре 1 година
MetadataAwareInterface.php 414078cafe vendor加入版本库 пре 1 година
PseudoLocalizationTranslator.php 414078cafe vendor加入版本库 пре 1 година
README.md 414078cafe vendor加入版本库 пре 1 година
TranslatableMessage.php 414078cafe vendor加入版本库 пре 1 година
Translator.php 414078cafe vendor加入版本库 пре 1 година
TranslatorBag.php 414078cafe vendor加入版本库 пре 1 година
TranslatorBagInterface.php 414078cafe vendor加入版本库 пре 1 година
composer.json 414078cafe vendor加入版本库 пре 1 година

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