zhangdehua 898e06e04e first commit 1 년 전
..
Catalogue 898e06e04e first commit 1 년 전
Command 898e06e04e first commit 1 년 전
DataCollector 898e06e04e first commit 1 년 전
DependencyInjection 898e06e04e first commit 1 년 전
Dumper 898e06e04e first commit 1 년 전
Exception 898e06e04e first commit 1 년 전
Extractor 898e06e04e first commit 1 년 전
Formatter 898e06e04e first commit 1 년 전
Loader 898e06e04e first commit 1 년 전
Provider 898e06e04e first commit 1 년 전
Reader 898e06e04e first commit 1 년 전
Resources 898e06e04e first commit 1 년 전
Test 898e06e04e first commit 1 년 전
Util 898e06e04e first commit 1 년 전
Writer 898e06e04e first commit 1 년 전
CHANGELOG.md 898e06e04e first commit 1 년 전
CatalogueMetadataAwareInterface.php 898e06e04e first commit 1 년 전
DataCollectorTranslator.php 898e06e04e first commit 1 년 전
IdentityTranslator.php 898e06e04e first commit 1 년 전
LICENSE 898e06e04e first commit 1 년 전
LocaleSwitcher.php 898e06e04e first commit 1 년 전
LoggingTranslator.php 898e06e04e first commit 1 년 전
MessageCatalogue.php 898e06e04e first commit 1 년 전
MessageCatalogueInterface.php 898e06e04e first commit 1 년 전
MetadataAwareInterface.php 898e06e04e first commit 1 년 전
PseudoLocalizationTranslator.php 898e06e04e first commit 1 년 전
README.md 898e06e04e first commit 1 년 전
TranslatableMessage.php 898e06e04e first commit 1 년 전
Translator.php 898e06e04e first commit 1 년 전
TranslatorBag.php 898e06e04e first commit 1 년 전
TranslatorBagInterface.php 898e06e04e first commit 1 년 전
composer.json 898e06e04e first commit 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 6.1 is backed by:

  • Crowdin, a cloud-based localization management software helping teams to go global and stay agile.

Help Symfony by sponsoring its development!

Resources