unknown abd0e89a86 second commit 1 місяць тому
..
Catalogue abd0e89a86 second commit 1 місяць тому
Command abd0e89a86 second commit 1 місяць тому
DataCollector abd0e89a86 second commit 1 місяць тому
DependencyInjection abd0e89a86 second commit 1 місяць тому
Dumper abd0e89a86 second commit 1 місяць тому
Exception abd0e89a86 second commit 1 місяць тому
Extractor abd0e89a86 second commit 1 місяць тому
Formatter abd0e89a86 second commit 1 місяць тому
Loader abd0e89a86 second commit 1 місяць тому
Provider abd0e89a86 second commit 1 місяць тому
Reader abd0e89a86 second commit 1 місяць тому
Resources abd0e89a86 second commit 1 місяць тому
Test abd0e89a86 second commit 1 місяць тому
Util abd0e89a86 second commit 1 місяць тому
Writer abd0e89a86 second commit 1 місяць тому
CHANGELOG.md abd0e89a86 second commit 1 місяць тому
CatalogueMetadataAwareInterface.php abd0e89a86 second commit 1 місяць тому
DataCollectorTranslator.php abd0e89a86 second commit 1 місяць тому
IdentityTranslator.php abd0e89a86 second commit 1 місяць тому
LICENSE abd0e89a86 second commit 1 місяць тому
LocaleSwitcher.php abd0e89a86 second commit 1 місяць тому
LoggingTranslator.php abd0e89a86 second commit 1 місяць тому
MessageCatalogue.php abd0e89a86 second commit 1 місяць тому
MessageCatalogueInterface.php abd0e89a86 second commit 1 місяць тому
MetadataAwareInterface.php abd0e89a86 second commit 1 місяць тому
PseudoLocalizationTranslator.php abd0e89a86 second commit 1 місяць тому
README.md abd0e89a86 second commit 1 місяць тому
StaticMessage.php abd0e89a86 second commit 1 місяць тому
TranslatableMessage.php abd0e89a86 second commit 1 місяць тому
Translator.php abd0e89a86 second commit 1 місяць тому
TranslatorBag.php abd0e89a86 second commit 1 місяць тому
TranslatorBagInterface.php abd0e89a86 second commit 1 місяць тому
composer.json abd0e89a86 second commit 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 ! »

Sponsor

Help Symfony by sponsoring its development!

Resources