Kirin 80169d6661 first há 3 anos atrás
..
Catalogue 80169d6661 first há 3 anos atrás
Command 80169d6661 first há 3 anos atrás
DataCollector 80169d6661 first há 3 anos atrás
DependencyInjection 80169d6661 first há 3 anos atrás
Dumper 80169d6661 first há 3 anos atrás
Exception 80169d6661 first há 3 anos atrás
Extractor 80169d6661 first há 3 anos atrás
Formatter 80169d6661 first há 3 anos atrás
Loader 80169d6661 first há 3 anos atrás
Reader 80169d6661 first há 3 anos atrás
Resources 80169d6661 first há 3 anos atrás
Util 80169d6661 first há 3 anos atrás
Writer 80169d6661 first há 3 anos atrás
.gitattributes 80169d6661 first há 3 anos atrás
CHANGELOG.md 80169d6661 first há 3 anos atrás
DataCollectorTranslator.php 80169d6661 first há 3 anos atrás
IdentityTranslator.php 80169d6661 first há 3 anos atrás
LICENSE 80169d6661 first há 3 anos atrás
LoggingTranslator.php 80169d6661 first há 3 anos atrás
MessageCatalogue.php 80169d6661 first há 3 anos atrás
MessageCatalogueInterface.php 80169d6661 first há 3 anos atrás
MetadataAwareInterface.php 80169d6661 first há 3 anos atrás
README.md 80169d6661 first há 3 anos atrás
Translator.php 80169d6661 first há 3 anos atrás
TranslatorBagInterface.php 80169d6661 first há 3 anos atrás
composer.json 80169d6661 first há 3 anos atrás

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