blackwoodseven / translation
改进的翻译服务提供商。
2.1.1
2016-10-11 11:30 UTC
Requires
- php: >=7.0.0
- symfony/translation: ^3.1
- symfony/twig-bridge: ^3.1
Requires (Dev)
- phpunit/phpunit: ^5.2
- silex/silex: ^2.0
This package is not auto-updated.
Last update: 2024-09-28 19:26:04 UTC
README
使用Composer在您的项目中安装BlackwoodSeven翻译库
composer require blackwoodseven/translation
配置
$app->register(new \Silex\Provider\TranslationServiceProvider(), [ 'locale_fallbacks' => ['en'], 'locale' => 'en', ]); $app->register(new \BlackwoodSeven\Translation\TranslationServiceProvider(), [ 'translation.path' => __DIR__ . '/locale', 'translation.contexts' => ['mycontext1', 'mycontext2'], 'translation.locales' => ['en', 'de'], ]);
用法
$app['formatter.date']($date, 'my_date_format');
{% mydate|formatDate('my_date_format') %}