lexik / LexikTranslationBundle

This Symfony bundle allow to import translation files content into the database and provide a GUI to edit translations.
MIT License
425 stars 262 forks source link

Adding LexikTranslationBundle breaks translations from other bundles #440

Open nicodemuz opened 1 year ago

nicodemuz commented 1 year ago

I was investigating for a long time how come some 3rd party translations do not work in my project. Turns out that LexikTranslationBundle somehow interferes with the translation loading by the default symfony installation.

For example, installing KnpTimeBundle works as expected when using it by itself. After introducing LexikTranslationBundle, the translations are no longer loaded.

When LexikTranslationBundle is moved as the first bundle in bundles.php, the translations are loaded correctly again.

I created a new public repository to demonstrate the issue, please see: https://github.com/nicodemuz/symfony-translation-test

This Symfony Slack thread may also be of interest: https://symfony-devs.slack.com/archives/C3EQ7S3MJ/p1692172721085889

nicodemuz commented 6 months ago

Could the issue be that 3rd party bundle translations are being look'd up using wrong paths?

# KnpTimeBundle:
*** Using dir /path/to/symfony/vendor/knplabs/knp-time-bundle/Resources/translations to lookup translation files. ***
No file to import

There is no path such as:

/path/to/symfony/vendor/knplabs/knp-time-bundle/Resources/translations

The actual path is:

/path/to/symfony/vendor/knplabs/knp-time-bundle/translations

Does nobody else have this issue? @raziel057 @bartmcleod