p2 project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
chuan eee1e27cb4 管理端推送邮件或短信 10 months ago
..
Catalogue 管理端推送邮件或短信 10 months ago
Command 管理端推送邮件或短信 10 months ago
DataCollector 管理端推送邮件或短信 10 months ago
DependencyInjection 管理端推送邮件或短信 10 months ago
Dumper 管理端推送邮件或短信 10 months ago
Exception 管理端推送邮件或短信 10 months ago
Extractor 管理端推送邮件或短信 10 months ago
Formatter 管理端推送邮件或短信 10 months ago
Loader 管理端推送邮件或短信 10 months ago
Provider 管理端推送邮件或短信 10 months ago
Reader 管理端推送邮件或短信 10 months ago
Resources 管理端推送邮件或短信 10 months ago
Test 管理端推送邮件或短信 10 months ago
Util 管理端推送邮件或短信 10 months ago
Writer 管理端推送邮件或短信 10 months ago
CHANGELOG.md 管理端推送邮件或短信 10 months ago
DataCollectorTranslator.php 管理端推送邮件或短信 10 months ago
IdentityTranslator.php 管理端推送邮件或短信 10 months ago
LICENSE 管理端推送邮件或短信 10 months ago
LoggingTranslator.php 管理端推送邮件或短信 10 months ago
MessageCatalogue.php 管理端推送邮件或短信 10 months ago
MessageCatalogueInterface.php 管理端推送邮件或短信 10 months ago
MetadataAwareInterface.php 管理端推送邮件或短信 10 months ago
PseudoLocalizationTranslator.php 管理端推送邮件或短信 10 months ago
README.md 管理端推送邮件或短信 10 months ago
TranslatableMessage.php 管理端推送邮件或短信 10 months ago
Translator.php 管理端推送邮件或短信 10 months ago
TranslatorBag.php 管理端推送邮件或短信 10 months ago
TranslatorBagInterface.php 管理端推送邮件或短信 10 months ago
composer.json 管理端推送邮件或短信 10 months ago

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