Zory a30513060a frist 10 月之前
..
Catalogue a30513060a frist 10 月之前
Command a30513060a frist 10 月之前
DataCollector a30513060a frist 10 月之前
DependencyInjection a30513060a frist 10 月之前
Dumper a30513060a frist 10 月之前
Exception a30513060a frist 10 月之前
Extractor a30513060a frist 10 月之前
Formatter a30513060a frist 10 月之前
Loader a30513060a frist 10 月之前
Provider a30513060a frist 10 月之前
Reader a30513060a frist 10 月之前
Resources a30513060a frist 10 月之前
Test a30513060a frist 10 月之前
Util a30513060a frist 10 月之前
Writer a30513060a frist 10 月之前
CHANGELOG.md a30513060a frist 10 月之前
CatalogueMetadataAwareInterface.php a30513060a frist 10 月之前
DataCollectorTranslator.php a30513060a frist 10 月之前
IdentityTranslator.php a30513060a frist 10 月之前
LICENSE a30513060a frist 10 月之前
LocaleSwitcher.php a30513060a frist 10 月之前
LoggingTranslator.php a30513060a frist 10 月之前
MessageCatalogue.php a30513060a frist 10 月之前
MessageCatalogueInterface.php a30513060a frist 10 月之前
MetadataAwareInterface.php a30513060a frist 10 月之前
PseudoLocalizationTranslator.php a30513060a frist 10 月之前
README.md a30513060a frist 10 月之前
TranslatableMessage.php a30513060a frist 10 月之前
Translator.php a30513060a frist 10 月之前
TranslatorBag.php a30513060a frist 10 月之前
TranslatorBagInterface.php a30513060a frist 10 月之前
composer.json a30513060a frist 10 月之前

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 7.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!

Resources