lizhen_gitee 5b0b0cc080 vendor há 10 meses atrás
..
Catalogue 5b0b0cc080 vendor há 10 meses atrás
Command 5b0b0cc080 vendor há 10 meses atrás
DataCollector 5b0b0cc080 vendor há 10 meses atrás
DependencyInjection 5b0b0cc080 vendor há 10 meses atrás
Dumper 5b0b0cc080 vendor há 10 meses atrás
Exception 5b0b0cc080 vendor há 10 meses atrás
Extractor 5b0b0cc080 vendor há 10 meses atrás
Formatter 5b0b0cc080 vendor há 10 meses atrás
Loader 5b0b0cc080 vendor há 10 meses atrás
Provider 5b0b0cc080 vendor há 10 meses atrás
Reader 5b0b0cc080 vendor há 10 meses atrás
Resources 5b0b0cc080 vendor há 10 meses atrás
Test 5b0b0cc080 vendor há 10 meses atrás
Util 5b0b0cc080 vendor há 10 meses atrás
Writer 5b0b0cc080 vendor há 10 meses atrás
CHANGELOG.md 5b0b0cc080 vendor há 10 meses atrás
DataCollectorTranslator.php 5b0b0cc080 vendor há 10 meses atrás
IdentityTranslator.php 5b0b0cc080 vendor há 10 meses atrás
LICENSE 5b0b0cc080 vendor há 10 meses atrás
LoggingTranslator.php 5b0b0cc080 vendor há 10 meses atrás
MessageCatalogue.php 5b0b0cc080 vendor há 10 meses atrás
MessageCatalogueInterface.php 5b0b0cc080 vendor há 10 meses atrás
MetadataAwareInterface.php 5b0b0cc080 vendor há 10 meses atrás
PseudoLocalizationTranslator.php 5b0b0cc080 vendor há 10 meses atrás
README.md 5b0b0cc080 vendor há 10 meses atrás
TranslatableMessage.php 5b0b0cc080 vendor há 10 meses atrás
Translator.php 5b0b0cc080 vendor há 10 meses atrás
TranslatorBag.php 5b0b0cc080 vendor há 10 meses atrás
TranslatorBagInterface.php 5b0b0cc080 vendor há 10 meses atrás
composer.json 5b0b0cc080 vendor há 10 meses 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;
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

The Translation component for Symfony 5.4/6.0 is backed by:

  • Crowdin, a cloud-based localization management software helping teams to go global and stay agile.
  • Lokalise, a continuous localization and translation management platform that integrates into your development workflow so you can ship localized products, faster.

Help Symfony by sponsoring its development!

Resources