php-translation/symfony-bundle

安装次数: 3,426,958

依赖者: 9

建议者: 0

安全性: 0

星标: 327

关注者: 16

分支: 94

开放问题: 48

类型:symfony-bundle

0.15.0 2024-08-22 09:12 UTC

README

Latest Version Total Downloads

PHP 译码的 Symfony 集成

安装

通过 Composer 安装此包

composer require php-translation/symfony-bundle

如果你使用 Symfony Flex - 你已经完成了!Symfony Flex 会为你创建默认配置,如果需要,可以更改它。如果你不使用 Symfony Flex,你需要执行更多简单的步骤。

  1. 首先,注册此包
# config/bundles.php
return [
    // ...
    Translation\Bundle\TranslationBundle::class => ['all' => true],
];
  1. 然后,配置此包。一个示例配置如下
# config/packages/php_translation.yaml
translation:
    locales: ["en"]
    edit_in_place:
        enabled: false
        config_name: app
    configs:
        app:
            dirs: ["%kernel.project_dir%/templates", "%kernel.project_dir%/src"]
            output_dir: "%kernel.project_dir%/translations"
            excluded_names: ["*TestCase.php", "*Test.php"]
            excluded_dirs: [cache, data, logs]
# config/packages/dev/php_translation.yaml
translation:
    symfony_profiler:
        enabled: true
    webui:
        enabled: true
  1. 最后一步,添加新路由
# config/routes/dev/php_translation.yaml
_translation_webui:
    resource: '@TranslationBundle/Resources/config/routing_webui.yaml'
    prefix: /admin

_translation_profiler:
    resource: '@TranslationBundle/Resources/config/routing_symfony_profiler.yaml'
# config/routes/php_translation.yaml
_translation_edit_in_place:
    resource: '@TranslationBundle/Resources/config/routing_edit_in_place.yaml'
    prefix: /admin

文档

请参阅完整的文档:https://php-translation.readthedocs.io.