wangsaitao b6131e421c 提交 пре 1 година
..
Catalogue b6131e421c 提交 пре 1 година
Command b6131e421c 提交 пре 1 година
DataCollector b6131e421c 提交 пре 1 година
DependencyInjection b6131e421c 提交 пре 1 година
Dumper b6131e421c 提交 пре 1 година
Exception b6131e421c 提交 пре 1 година
Extractor b6131e421c 提交 пре 1 година
Formatter b6131e421c 提交 пре 1 година
Loader b6131e421c 提交 пре 1 година
Reader b6131e421c 提交 пре 1 година
Resources b6131e421c 提交 пре 1 година
Util b6131e421c 提交 пре 1 година
Writer b6131e421c 提交 пре 1 година
CHANGELOG.md b6131e421c 提交 пре 1 година
DataCollectorTranslator.php b6131e421c 提交 пре 1 година
IdentityTranslator.php b6131e421c 提交 пре 1 година
Interval.php b6131e421c 提交 пре 1 година
LICENSE b6131e421c 提交 пре 1 година
LoggingTranslator.php b6131e421c 提交 пре 1 година
MessageCatalogue.php b6131e421c 提交 пре 1 година
MessageCatalogueInterface.php b6131e421c 提交 пре 1 година
MessageSelector.php b6131e421c 提交 пре 1 година
MetadataAwareInterface.php b6131e421c 提交 пре 1 година
PluralizationRules.php b6131e421c 提交 пре 1 година
README.md b6131e421c 提交 пре 1 година
Translator.php b6131e421c 提交 пре 1 година
TranslatorBagInterface.php b6131e421c 提交 пре 1 година
TranslatorInterface.php b6131e421c 提交 пре 1 година
composer.json b6131e421c 提交 пре 1 година

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