控制台应用,yzncms本身基于tp5.1框架,里面的队列用不了,bug,坑
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.
Your Name cfaaa533bb dsdfd 11 ay önce
..
Catalogue dsdfd 11 ay önce
Command dsdfd 11 ay önce
DataCollector dsdfd 11 ay önce
DependencyInjection dsdfd 11 ay önce
Dumper dsdfd 11 ay önce
Exception dsdfd 11 ay önce
Extractor dsdfd 11 ay önce
Formatter dsdfd 11 ay önce
Loader dsdfd 11 ay önce
Provider dsdfd 11 ay önce
Reader dsdfd 11 ay önce
Resources dsdfd 11 ay önce
Test dsdfd 11 ay önce
Util dsdfd 11 ay önce
Writer dsdfd 11 ay önce
CHANGELOG.md dsdfd 11 ay önce
DataCollectorTranslator.php dsdfd 11 ay önce
IdentityTranslator.php dsdfd 11 ay önce
LICENSE dsdfd 11 ay önce
LoggingTranslator.php dsdfd 11 ay önce
MessageCatalogue.php dsdfd 11 ay önce
MessageCatalogueInterface.php dsdfd 11 ay önce
MetadataAwareInterface.php dsdfd 11 ay önce
PseudoLocalizationTranslator.php dsdfd 11 ay önce
README.md dsdfd 11 ay önce
TranslatableMessage.php dsdfd 11 ay önce
Translator.php dsdfd 11 ay önce
TranslatorBag.php dsdfd 11 ay önce
TranslatorBagInterface.php dsdfd 11 ay önce
composer.json dsdfd 11 ay önce

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