zz ca8126a759 项目初始化 1 هفته پیش
..
Catalogue ca8126a759 项目初始化 1 هفته پیش
Command ca8126a759 项目初始化 1 هفته پیش
DataCollector ca8126a759 项目初始化 1 هفته پیش
DependencyInjection ca8126a759 项目初始化 1 هفته پیش
Dumper ca8126a759 项目初始化 1 هفته پیش
Exception ca8126a759 项目初始化 1 هفته پیش
Extractor ca8126a759 项目初始化 1 هفته پیش
Formatter ca8126a759 项目初始化 1 هفته پیش
Loader ca8126a759 项目初始化 1 هفته پیش
Provider ca8126a759 项目初始化 1 هفته پیش
Reader ca8126a759 项目初始化 1 هفته پیش
Resources ca8126a759 项目初始化 1 هفته پیش
Test ca8126a759 项目初始化 1 هفته پیش
Util ca8126a759 项目初始化 1 هفته پیش
Writer ca8126a759 项目初始化 1 هفته پیش
CHANGELOG.md ca8126a759 项目初始化 1 هفته پیش
DataCollectorTranslator.php ca8126a759 项目初始化 1 هفته پیش
IdentityTranslator.php ca8126a759 项目初始化 1 هفته پیش
LICENSE ca8126a759 项目初始化 1 هفته پیش
LoggingTranslator.php ca8126a759 项目初始化 1 هفته پیش
MessageCatalogue.php ca8126a759 项目初始化 1 هفته پیش
MessageCatalogueInterface.php ca8126a759 项目初始化 1 هفته پیش
MetadataAwareInterface.php ca8126a759 项目初始化 1 هفته پیش
PseudoLocalizationTranslator.php ca8126a759 项目初始化 1 هفته پیش
README.md ca8126a759 项目初始化 1 هفته پیش
TranslatableMessage.php ca8126a759 项目初始化 1 هفته پیش
Translator.php ca8126a759 项目初始化 1 هفته پیش
TranslatorBag.php ca8126a759 项目初始化 1 هفته پیش
TranslatorBagInterface.php ca8126a759 项目初始化 1 هفته پیش
composer.json ca8126a759 项目初始化 1 هفته پیش

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