I am creating a webapp running with Symfony 2.7, which is designed to be used only with one language (a unique locale). I can see in profiler many missing messages in every translation domain, but I don’t need translation at all.
How can I disable the translation component?
Edit : What if I want to keep translation for some bundles, and disable it for others bundles ? For instance, I have Sonata Admin Bundle, and I want to keep using it in with its translation, but I don't want Symfony to look for translation messages with other bundles.
Edit 2 : So I guess it's not possible to disable translation only for one of my own bundle ? I still have missing translation messages warning in the profiler.
You can disable translation by configuration. Edit app/config/config.yml
framework:
translator:
enabled: false