王大坤 4122133d42 update hace 1 año
..
Catalogue 4122133d42 update hace 1 año
Command 4122133d42 update hace 1 año
DataCollector 4122133d42 update hace 1 año
DependencyInjection 4122133d42 update hace 1 año
Dumper 4122133d42 update hace 1 año
Exception 4122133d42 update hace 1 año
Extractor 4122133d42 update hace 1 año
Formatter 4122133d42 update hace 1 año
Loader 4122133d42 update hace 1 año
Provider 4122133d42 update hace 1 año
Reader 4122133d42 update hace 1 año
Resources 4122133d42 update hace 1 año
Test 4122133d42 update hace 1 año
Util 4122133d42 update hace 1 año
Writer 4122133d42 update hace 1 año
CHANGELOG.md 4122133d42 update hace 1 año
DataCollectorTranslator.php 4122133d42 update hace 1 año
IdentityTranslator.php 4122133d42 update hace 1 año
LICENSE 4122133d42 update hace 1 año
LoggingTranslator.php 4122133d42 update hace 1 año
MessageCatalogue.php 4122133d42 update hace 1 año
MessageCatalogueInterface.php 4122133d42 update hace 1 año
MetadataAwareInterface.php 4122133d42 update hace 1 año
PseudoLocalizationTranslator.php 4122133d42 update hace 1 año
README.md 4122133d42 update hace 1 año
TranslatableMessage.php 4122133d42 update hace 1 año
Translator.php 4122133d42 update hace 1 año
TranslatorBag.php 4122133d42 update hace 1 año
TranslatorBagInterface.php 4122133d42 update hace 1 año
composer.json 4122133d42 update 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