From 7d2cf04139df0971418c7c69a4cb555daec85789 Mon Sep 17 00:00:00 2001 From: Nyholm Date: Thu, 26 Dec 2019 14:47:56 +0100 Subject: [PATCH] PHP-Translations version 0.10.0 --- .../0.10/config/packages/dev/php_translation.yaml | 5 +++++ .../0.10/config/packages/php_translation.yaml | 11 +++++++++++ .../0.10/config/routes/dev/php_translation.yaml | 6 ++++++ .../0.10/config/routes/php_translation.yaml | 3 +++ php-translation/symfony-bundle/0.10/manifest.json | 8 ++++++++ 5 files changed, 33 insertions(+) create mode 100644 php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml create mode 100644 php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml create mode 100644 php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml create mode 100644 php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml create mode 100644 php-translation/symfony-bundle/0.10/manifest.json diff --git a/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml new file mode 100644 index 00000000..53398fbc --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/packages/dev/php_translation.yaml @@ -0,0 +1,5 @@ +translation: + symfony_profiler: + enabled: true + webui: + enabled: true diff --git a/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml new file mode 100644 index 00000000..bc6cd978 --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/packages/php_translation.yaml @@ -0,0 +1,11 @@ +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] diff --git a/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml new file mode 100644 index 00000000..f0e3975f --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/routes/dev/php_translation.yaml @@ -0,0 +1,6 @@ +_translation_webui: + resource: "@TranslationBundle/Resources/config/routing_webui.yaml" + prefix: /admin + +_translation_profiler: + resource: '@TranslationBundle/Resources/config/routing_symfony_profiler.yaml' diff --git a/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml b/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml new file mode 100644 index 00000000..e70e16fe --- /dev/null +++ b/php-translation/symfony-bundle/0.10/config/routes/php_translation.yaml @@ -0,0 +1,3 @@ +_translation_edit_in_place: + resource: '@TranslationBundle/Resources/config/routing_edit_in_place.yaml' + prefix: /admin diff --git a/php-translation/symfony-bundle/0.10/manifest.json b/php-translation/symfony-bundle/0.10/manifest.json new file mode 100644 index 00000000..e7a617c6 --- /dev/null +++ b/php-translation/symfony-bundle/0.10/manifest.json @@ -0,0 +1,8 @@ +{ + "bundles": { + "Translation\\Bundle\\TranslationBundle": ["all"] + }, + "copy-from-recipe": { + "config/": "%CONFIG_DIR%/" + } +}