Kirin 80169d6661 first hace 3 años
..
Catalogue 80169d6661 first hace 3 años
Command 80169d6661 first hace 3 años
DataCollector 80169d6661 first hace 3 años
DependencyInjection 80169d6661 first hace 3 años
Dumper 80169d6661 first hace 3 años
Exception 80169d6661 first hace 3 años
Extractor 80169d6661 first hace 3 años
Formatter 80169d6661 first hace 3 años
Loader 80169d6661 first hace 3 años
Reader 80169d6661 first hace 3 años
Resources 80169d6661 first hace 3 años
Util 80169d6661 first hace 3 años
Writer 80169d6661 first hace 3 años
.gitattributes 80169d6661 first hace 3 años
CHANGELOG.md 80169d6661 first hace 3 años
DataCollectorTranslator.php 80169d6661 first hace 3 años
IdentityTranslator.php 80169d6661 first hace 3 años
LICENSE 80169d6661 first hace 3 años
LoggingTranslator.php 80169d6661 first hace 3 años
MessageCatalogue.php 80169d6661 first hace 3 años
MessageCatalogueInterface.php 80169d6661 first hace 3 años
MetadataAwareInterface.php 80169d6661 first hace 3 años
README.md 80169d6661 first hace 3 años
Translator.php 80169d6661 first hace 3 años
TranslatorBagInterface.php 80169d6661 first hace 3 años
composer.json 80169d6661 first hace 3 años

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