唐金木 07e2592bdb first commit vor 4 Jahren
..
Catalogue 07e2592bdb first commit vor 4 Jahren
Command 07e2592bdb first commit vor 4 Jahren
DataCollector 07e2592bdb first commit vor 4 Jahren
DependencyInjection 07e2592bdb first commit vor 4 Jahren
Dumper 07e2592bdb first commit vor 4 Jahren
Exception 07e2592bdb first commit vor 4 Jahren
Extractor 07e2592bdb first commit vor 4 Jahren
Formatter 07e2592bdb first commit vor 4 Jahren
Loader 07e2592bdb first commit vor 4 Jahren
Reader 07e2592bdb first commit vor 4 Jahren
Resources 07e2592bdb first commit vor 4 Jahren
Util 07e2592bdb first commit vor 4 Jahren
Writer 07e2592bdb first commit vor 4 Jahren
.gitattributes 07e2592bdb first commit vor 4 Jahren
CHANGELOG.md 07e2592bdb first commit vor 4 Jahren
DataCollectorTranslator.php 07e2592bdb first commit vor 4 Jahren
IdentityTranslator.php 07e2592bdb first commit vor 4 Jahren
LICENSE 07e2592bdb first commit vor 4 Jahren
LoggingTranslator.php 07e2592bdb first commit vor 4 Jahren
MessageCatalogue.php 07e2592bdb first commit vor 4 Jahren
MessageCatalogueInterface.php 07e2592bdb first commit vor 4 Jahren
MetadataAwareInterface.php 07e2592bdb first commit vor 4 Jahren
README.md 07e2592bdb first commit vor 4 Jahren
Translator.php 07e2592bdb first commit vor 4 Jahren
TranslatorBagInterface.php 07e2592bdb first commit vor 4 Jahren
composer.json 07e2592bdb first commit vor 4 Jahren

README.md

Translation Component

The Translation component provides tools to internationalize your application.

Getting Started

$ composer require symfony/translation
use Symfony\Component\Translation\Translator;

$translator = new Translator('fr_FR');
$translator->addResource('array', [
    'Hello World!' => 'Bonjour !',
], 'fr_FR');

echo $translator->trans('Hello World!'); // outputs « Bonjour ! »

Resources