ss 394472f036 init 7 달 전
..
Catalogue 394472f036 init 7 달 전
Command 394472f036 init 7 달 전
DataCollector 394472f036 init 7 달 전
DependencyInjection 394472f036 init 7 달 전
Dumper 394472f036 init 7 달 전
Exception 394472f036 init 7 달 전
Extractor 394472f036 init 7 달 전
Formatter 394472f036 init 7 달 전
Loader 394472f036 init 7 달 전
Reader 394472f036 init 7 달 전
Resources 394472f036 init 7 달 전
Util 394472f036 init 7 달 전
Writer 394472f036 init 7 달 전
CHANGELOG.md 394472f036 init 7 달 전
DataCollectorTranslator.php 394472f036 init 7 달 전
IdentityTranslator.php 394472f036 init 7 달 전
Interval.php 394472f036 init 7 달 전
LICENSE 394472f036 init 7 달 전
LoggingTranslator.php 394472f036 init 7 달 전
MessageCatalogue.php 394472f036 init 7 달 전
MessageCatalogueInterface.php 394472f036 init 7 달 전
MessageSelector.php 394472f036 init 7 달 전
MetadataAwareInterface.php 394472f036 init 7 달 전
PluralizationRules.php 394472f036 init 7 달 전
README.md 394472f036 init 7 달 전
Translator.php 394472f036 init 7 달 전
TranslatorBagInterface.php 394472f036 init 7 달 전
TranslatorInterface.php 394472f036 init 7 달 전
composer.json 394472f036 init 7 달 전

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