Нет описания

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