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.
 
 
 
 
 
 
zhishifufei_php/vendor/symfony/translation
Your Name 0bcfa563c0 1 8 months ago
..
Catalogue 1 8 months ago
Command 1 8 months ago
DataCollector 1 8 months ago
DependencyInjection 1 8 months ago
Dumper 1 8 months ago
Exception 1 8 months ago
Extractor 1 8 months ago
Formatter 1 8 months ago
Loader 1 8 months ago
Reader 1 8 months ago
Resources 1 8 months ago
Util 1 8 months ago
Writer 1 8 months ago
CHANGELOG.md 1 8 months ago
DataCollectorTranslator.php 1 8 months ago
IdentityTranslator.php 1 8 months ago
Interval.php 1 8 months ago
LICENSE 1 8 months ago
LoggingTranslator.php 1 8 months ago
MessageCatalogue.php 1 8 months ago
MessageCatalogueInterface.php 1 8 months ago
MessageSelector.php 1 8 months ago
MetadataAwareInterface.php 1 8 months ago
PluralizationRules.php 1 8 months ago
README.md 1 8 months ago
Translator.php 1 8 months ago
TranslatorBagInterface.php 1 8 months ago
TranslatorInterface.php 1 8 months ago
composer.json 1 8 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 ! »

Resources