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

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