0
0
ss d581d78eb7 初始化 10 ماه پیش
..
Catalogue d581d78eb7 初始化 10 ماه پیش
Command d581d78eb7 初始化 10 ماه پیش
DataCollector d581d78eb7 初始化 10 ماه پیش
DependencyInjection d581d78eb7 初始化 10 ماه پیش
Dumper d581d78eb7 初始化 10 ماه پیش
Exception d581d78eb7 初始化 10 ماه پیش
Extractor d581d78eb7 初始化 10 ماه پیش
Formatter d581d78eb7 初始化 10 ماه پیش
Loader d581d78eb7 初始化 10 ماه پیش
Reader d581d78eb7 初始化 10 ماه پیش
Resources d581d78eb7 初始化 10 ماه پیش
Util d581d78eb7 初始化 10 ماه پیش
Writer d581d78eb7 初始化 10 ماه پیش
CHANGELOG.md d581d78eb7 初始化 10 ماه پیش
DataCollectorTranslator.php d581d78eb7 初始化 10 ماه پیش
IdentityTranslator.php d581d78eb7 初始化 10 ماه پیش
Interval.php d581d78eb7 初始化 10 ماه پیش
LICENSE d581d78eb7 初始化 10 ماه پیش
LoggingTranslator.php d581d78eb7 初始化 10 ماه پیش
MessageCatalogue.php d581d78eb7 初始化 10 ماه پیش
MessageCatalogueInterface.php d581d78eb7 初始化 10 ماه پیش
MessageSelector.php d581d78eb7 初始化 10 ماه پیش
MetadataAwareInterface.php d581d78eb7 初始化 10 ماه پیش
PluralizationRules.php d581d78eb7 初始化 10 ماه پیش
README.md d581d78eb7 初始化 10 ماه پیش
Translator.php d581d78eb7 初始化 10 ماه پیش
TranslatorBagInterface.php d581d78eb7 初始化 10 ماه پیش
TranslatorInterface.php d581d78eb7 初始化 10 ماه پیش
composer.json d581d78eb7 初始化 10 ماه پیش

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