You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Your Name
0bcfa563c0
|
8 months ago | |
---|---|---|
.. | ||
Catalogue | 8 months ago | |
Command | 8 months ago | |
DataCollector | 8 months ago | |
DependencyInjection | 8 months ago | |
Dumper | 8 months ago | |
Exception | 8 months ago | |
Extractor | 8 months ago | |
Formatter | 8 months ago | |
Loader | 8 months ago | |
Reader | 8 months ago | |
Resources | 8 months ago | |
Util | 8 months ago | |
Writer | 8 months ago | |
CHANGELOG.md | 8 months ago | |
DataCollectorTranslator.php | 8 months ago | |
IdentityTranslator.php | 8 months ago | |
Interval.php | 8 months ago | |
LICENSE | 8 months ago | |
LoggingTranslator.php | 8 months ago | |
MessageCatalogue.php | 8 months ago | |
MessageCatalogueInterface.php | 8 months ago | |
MessageSelector.php | 8 months ago | |
MetadataAwareInterface.php | 8 months ago | |
PluralizationRules.php | 8 months ago | |
README.md | 8 months ago | |
Translator.php | 8 months ago | |
TranslatorBagInterface.php | 8 months ago | |
TranslatorInterface.php | 8 months ago | |
composer.json | 8 months ago |
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 ! »