智慧教务系统
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.
 
 
 
 
 
 
王泽彦 a82651f1d8 项目初始化 11 months ago
..
Catalogue 项目初始化 11 months ago
Command 项目初始化 11 months ago
DataCollector 项目初始化 11 months ago
DependencyInjection 项目初始化 11 months ago
Dumper 项目初始化 11 months ago
Exception 项目初始化 11 months ago
Extractor 项目初始化 11 months ago
Formatter 项目初始化 11 months ago
Loader 项目初始化 11 months ago
Provider 项目初始化 11 months ago
Reader 项目初始化 11 months ago
Resources 项目初始化 11 months ago
Test 项目初始化 11 months ago
Util 项目初始化 11 months ago
Writer 项目初始化 11 months ago
CHANGELOG.md 项目初始化 11 months ago
DataCollectorTranslator.php 项目初始化 11 months ago
IdentityTranslator.php 项目初始化 11 months ago
LICENSE 项目初始化 11 months ago
LoggingTranslator.php 项目初始化 11 months ago
MessageCatalogue.php 项目初始化 11 months ago
MessageCatalogueInterface.php 项目初始化 11 months ago
MetadataAwareInterface.php 项目初始化 11 months ago
PseudoLocalizationTranslator.php 项目初始化 11 months ago
README.md 项目初始化 11 months ago
TranslatableMessage.php 项目初始化 11 months ago
Translator.php 项目初始化 11 months ago
TranslatorBag.php 项目初始化 11 months ago
TranslatorBagInterface.php 项目初始化 11 months ago
composer.json 项目初始化 11 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