Нет описания

server 52763dedf1 gitignore лет назад: 3
..
Catalogue 52763dedf1 gitignore лет назад: 3
Command 52763dedf1 gitignore лет назад: 3
DataCollector 52763dedf1 gitignore лет назад: 3
DependencyInjection 52763dedf1 gitignore лет назад: 3
Dumper 52763dedf1 gitignore лет назад: 3
Exception 52763dedf1 gitignore лет назад: 3
Extractor 52763dedf1 gitignore лет назад: 3
Formatter 52763dedf1 gitignore лет назад: 3
Loader 52763dedf1 gitignore лет назад: 3
Reader 52763dedf1 gitignore лет назад: 3
Resources 52763dedf1 gitignore лет назад: 3
Util 52763dedf1 gitignore лет назад: 3
Writer 52763dedf1 gitignore лет назад: 3
CHANGELOG.md 52763dedf1 gitignore лет назад: 3
DataCollectorTranslator.php 52763dedf1 gitignore лет назад: 3
IdentityTranslator.php 52763dedf1 gitignore лет назад: 3
Interval.php 52763dedf1 gitignore лет назад: 3
LICENSE 52763dedf1 gitignore лет назад: 3
LoggingTranslator.php 52763dedf1 gitignore лет назад: 3
MessageCatalogue.php 52763dedf1 gitignore лет назад: 3
MessageCatalogueInterface.php 52763dedf1 gitignore лет назад: 3
MessageSelector.php 52763dedf1 gitignore лет назад: 3
MetadataAwareInterface.php 52763dedf1 gitignore лет назад: 3
PluralizationRules.php 52763dedf1 gitignore лет назад: 3
README.md 52763dedf1 gitignore лет назад: 3
Translator.php 52763dedf1 gitignore лет назад: 3
TranslatorBagInterface.php 52763dedf1 gitignore лет назад: 3
TranslatorInterface.php 52763dedf1 gitignore лет назад: 3
composer.json 52763dedf1 gitignore лет назад: 3

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