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

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