zhangguidong 98403600f9 sunguidong 2 yıl önce
..
Catalogue 98403600f9 sunguidong 2 yıl önce
Command 98403600f9 sunguidong 2 yıl önce
DataCollector 98403600f9 sunguidong 2 yıl önce
DependencyInjection 98403600f9 sunguidong 2 yıl önce
Dumper 98403600f9 sunguidong 2 yıl önce
Exception 98403600f9 sunguidong 2 yıl önce
Extractor 98403600f9 sunguidong 2 yıl önce
Formatter 98403600f9 sunguidong 2 yıl önce
Loader 98403600f9 sunguidong 2 yıl önce
Reader 98403600f9 sunguidong 2 yıl önce
Resources 98403600f9 sunguidong 2 yıl önce
Util 98403600f9 sunguidong 2 yıl önce
Writer 98403600f9 sunguidong 2 yıl önce
.gitattributes 98403600f9 sunguidong 2 yıl önce
CHANGELOG.md 98403600f9 sunguidong 2 yıl önce
DataCollectorTranslator.php 98403600f9 sunguidong 2 yıl önce
IdentityTranslator.php 98403600f9 sunguidong 2 yıl önce
Interval.php 98403600f9 sunguidong 2 yıl önce
LICENSE 98403600f9 sunguidong 2 yıl önce
LoggingTranslator.php 98403600f9 sunguidong 2 yıl önce
MessageCatalogue.php 98403600f9 sunguidong 2 yıl önce
MessageCatalogueInterface.php 98403600f9 sunguidong 2 yıl önce
MessageSelector.php 98403600f9 sunguidong 2 yıl önce
MetadataAwareInterface.php 98403600f9 sunguidong 2 yıl önce
PluralizationRules.php 98403600f9 sunguidong 2 yıl önce
README.md 98403600f9 sunguidong 2 yıl önce
Translator.php 98403600f9 sunguidong 2 yıl önce
TranslatorBagInterface.php 98403600f9 sunguidong 2 yıl önce
TranslatorInterface.php 98403600f9 sunguidong 2 yıl önce
composer.json 98403600f9 sunguidong 2 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