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

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