唐金木 07e2592bdb first commit 4 лет назад
..
Catalogue 07e2592bdb first commit 4 лет назад
Command 07e2592bdb first commit 4 лет назад
DataCollector 07e2592bdb first commit 4 лет назад
DependencyInjection 07e2592bdb first commit 4 лет назад
Dumper 07e2592bdb first commit 4 лет назад
Exception 07e2592bdb first commit 4 лет назад
Extractor 07e2592bdb first commit 4 лет назад
Formatter 07e2592bdb first commit 4 лет назад
Loader 07e2592bdb first commit 4 лет назад
Reader 07e2592bdb first commit 4 лет назад
Resources 07e2592bdb first commit 4 лет назад
Util 07e2592bdb first commit 4 лет назад
Writer 07e2592bdb first commit 4 лет назад
.gitattributes 07e2592bdb first commit 4 лет назад
CHANGELOG.md 07e2592bdb first commit 4 лет назад
DataCollectorTranslator.php 07e2592bdb first commit 4 лет назад
IdentityTranslator.php 07e2592bdb first commit 4 лет назад
LICENSE 07e2592bdb first commit 4 лет назад
LoggingTranslator.php 07e2592bdb first commit 4 лет назад
MessageCatalogue.php 07e2592bdb first commit 4 лет назад
MessageCatalogueInterface.php 07e2592bdb first commit 4 лет назад
MetadataAwareInterface.php 07e2592bdb first commit 4 лет назад
README.md 07e2592bdb first commit 4 лет назад
Translator.php 07e2592bdb first commit 4 лет назад
TranslatorBagInterface.php 07e2592bdb first commit 4 лет назад
composer.json 07e2592bdb first commit 4 лет назад

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