설명 없음

server 52763dedf1 gitignore 2 년 전
..
Catalogue 52763dedf1 gitignore 2 년 전
Command 52763dedf1 gitignore 2 년 전
DataCollector 52763dedf1 gitignore 2 년 전
DependencyInjection 52763dedf1 gitignore 2 년 전
Dumper 52763dedf1 gitignore 2 년 전
Exception 52763dedf1 gitignore 2 년 전
Extractor 52763dedf1 gitignore 2 년 전
Formatter 52763dedf1 gitignore 2 년 전
Loader 52763dedf1 gitignore 2 년 전
Reader 52763dedf1 gitignore 2 년 전
Resources 52763dedf1 gitignore 2 년 전
Util 52763dedf1 gitignore 2 년 전
Writer 52763dedf1 gitignore 2 년 전
CHANGELOG.md 52763dedf1 gitignore 2 년 전
DataCollectorTranslator.php 52763dedf1 gitignore 2 년 전
IdentityTranslator.php 52763dedf1 gitignore 2 년 전
Interval.php 52763dedf1 gitignore 2 년 전
LICENSE 52763dedf1 gitignore 2 년 전
LoggingTranslator.php 52763dedf1 gitignore 2 년 전
MessageCatalogue.php 52763dedf1 gitignore 2 년 전
MessageCatalogueInterface.php 52763dedf1 gitignore 2 년 전
MessageSelector.php 52763dedf1 gitignore 2 년 전
MetadataAwareInterface.php 52763dedf1 gitignore 2 년 전
PluralizationRules.php 52763dedf1 gitignore 2 년 전
README.md 52763dedf1 gitignore 2 년 전
Translator.php 52763dedf1 gitignore 2 년 전
TranslatorBagInterface.php 52763dedf1 gitignore 2 년 전
TranslatorInterface.php 52763dedf1 gitignore 2 년 전
composer.json 52763dedf1 gitignore 2 년 전

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 ! »

Resources