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.
wanghousheng
8c41c84c32
|
10 months ago | |
---|---|---|
.. | ||
Catalogue | 10 months ago | |
Command | 10 months ago | |
DataCollector | 10 months ago | |
DependencyInjection | 10 months ago | |
Dumper | 10 months ago | |
Exception | 10 months ago | |
Extractor | 10 months ago | |
Formatter | 10 months ago | |
Loader | 10 months ago | |
Provider | 10 months ago | |
Reader | 10 months ago | |
Resources | 10 months ago | |
Test | 10 months ago | |
Util | 10 months ago | |
Writer | 10 months ago | |
CHANGELOG.md | 10 months ago | |
CatalogueMetadataAwareInterface.php | 10 months ago | |
DataCollectorTranslator.php | 10 months ago | |
IdentityTranslator.php | 10 months ago | |
LICENSE | 10 months ago | |
LocaleSwitcher.php | 10 months ago | |
LoggingTranslator.php | 10 months ago | |
MessageCatalogue.php | 10 months ago | |
MessageCatalogueInterface.php | 10 months ago | |
MetadataAwareInterface.php | 10 months ago | |
PseudoLocalizationTranslator.php | 10 months ago | |
README.md | 10 months ago | |
TranslatableMessage.php | 10 months ago | |
Translator.php | 10 months ago | |
TranslatorBag.php | 10 months ago | |
TranslatorBagInterface.php | 10 months ago | |
composer.json | 10 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 ! »
Sponsor
The Translation component for Symfony 6.1 is backed by:
- Crowdin, a cloud-based localization management software helping teams to go global and stay agile.
Help Symfony by sponsoring its development!