智慧教务系统
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.
 
 
 
 
 
 
于宏哲PHP 08d47f1303 new 11 months ago
..
Catalogue new 11 months ago
Command new 11 months ago
DataCollector new 11 months ago
DependencyInjection new 11 months ago
Dumper new 11 months ago
Exception new 11 months ago
Extractor new 11 months ago
Formatter new 11 months ago
Loader new 11 months ago
Provider new 11 months ago
Reader new 11 months ago
Resources new 11 months ago
Test new 11 months ago
Util new 11 months ago
Writer new 11 months ago
CHANGELOG.md new 11 months ago
DataCollectorTranslator.php new 11 months ago
IdentityTranslator.php new 11 months ago
LICENSE new 11 months ago
LoggingTranslator.php new 11 months ago
MessageCatalogue.php new 11 months ago
MessageCatalogueInterface.php new 11 months ago
MetadataAwareInterface.php new 11 months ago
PseudoLocalizationTranslator.php new 11 months ago
README.md new 11 months ago
TranslatableMessage.php new 11 months ago
Translator.php new 11 months ago
TranslatorBag.php new 11 months ago
TranslatorBagInterface.php new 11 months ago
composer.json new 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