lizhen_gitee 414078cafe vendor加入版本库 hace 1 año
..
Catalogue 414078cafe vendor加入版本库 hace 1 año
Command 414078cafe vendor加入版本库 hace 1 año
DataCollector 414078cafe vendor加入版本库 hace 1 año
DependencyInjection 414078cafe vendor加入版本库 hace 1 año
Dumper 414078cafe vendor加入版本库 hace 1 año
Exception 414078cafe vendor加入版本库 hace 1 año
Extractor 414078cafe vendor加入版本库 hace 1 año
Formatter 414078cafe vendor加入版本库 hace 1 año
Loader 414078cafe vendor加入版本库 hace 1 año
Provider 414078cafe vendor加入版本库 hace 1 año
Reader 414078cafe vendor加入版本库 hace 1 año
Resources 414078cafe vendor加入版本库 hace 1 año
Test 414078cafe vendor加入版本库 hace 1 año
Util 414078cafe vendor加入版本库 hace 1 año
Writer 414078cafe vendor加入版本库 hace 1 año
CHANGELOG.md 414078cafe vendor加入版本库 hace 1 año
DataCollectorTranslator.php 414078cafe vendor加入版本库 hace 1 año
IdentityTranslator.php 414078cafe vendor加入版本库 hace 1 año
LICENSE 414078cafe vendor加入版本库 hace 1 año
LoggingTranslator.php 414078cafe vendor加入版本库 hace 1 año
MessageCatalogue.php 414078cafe vendor加入版本库 hace 1 año
MessageCatalogueInterface.php 414078cafe vendor加入版本库 hace 1 año
MetadataAwareInterface.php 414078cafe vendor加入版本库 hace 1 año
PseudoLocalizationTranslator.php 414078cafe vendor加入版本库 hace 1 año
README.md 414078cafe vendor加入版本库 hace 1 año
TranslatableMessage.php 414078cafe vendor加入版本库 hace 1 año
Translator.php 414078cafe vendor加入版本库 hace 1 año
TranslatorBag.php 414078cafe vendor加入版本库 hace 1 año
TranslatorBagInterface.php 414078cafe vendor加入版本库 hace 1 año
composer.json 414078cafe vendor加入版本库 hace 1 año

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