唐金木 07e2592bdb first commit 4 년 전
..
Catalogue 07e2592bdb first commit 4 년 전
Command 07e2592bdb first commit 4 년 전
DataCollector 07e2592bdb first commit 4 년 전
DependencyInjection 07e2592bdb first commit 4 년 전
Dumper 07e2592bdb first commit 4 년 전
Exception 07e2592bdb first commit 4 년 전
Extractor 07e2592bdb first commit 4 년 전
Formatter 07e2592bdb first commit 4 년 전
Loader 07e2592bdb first commit 4 년 전
Reader 07e2592bdb first commit 4 년 전
Resources 07e2592bdb first commit 4 년 전
Util 07e2592bdb first commit 4 년 전
Writer 07e2592bdb first commit 4 년 전
.gitattributes 07e2592bdb first commit 4 년 전
CHANGELOG.md 07e2592bdb first commit 4 년 전
DataCollectorTranslator.php 07e2592bdb first commit 4 년 전
IdentityTranslator.php 07e2592bdb first commit 4 년 전
LICENSE 07e2592bdb first commit 4 년 전
LoggingTranslator.php 07e2592bdb first commit 4 년 전
MessageCatalogue.php 07e2592bdb first commit 4 년 전
MessageCatalogueInterface.php 07e2592bdb first commit 4 년 전
MetadataAwareInterface.php 07e2592bdb first commit 4 년 전
README.md 07e2592bdb first commit 4 년 전
Translator.php 07e2592bdb first commit 4 년 전
TranslatorBagInterface.php 07e2592bdb first commit 4 년 전
composer.json 07e2592bdb first commit 4 년 전

README.md

Translation Component

The Translation component provides tools to internationalize your application.

Getting Started

$ composer require symfony/translation
use Symfony\Component\Translation\Translator;

$translator = new Translator('fr_FR');
$translator->addResource('array', [
    'Hello World!' => 'Bonjour !',
], 'fr_FR');

echo $translator->trans('Hello World!'); // outputs « Bonjour ! »

Resources