15
votes

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.

2
just comment line contains translator in config symfony.com/doc/current/book/translation.html#configurationegig
Which bundles? In your own bundles, simply don't use the translatorEmii Khaos
Yes, it concern my own bundles. How to do that ?Jean Bidon

2 Answers

22
votes

You can disable translation by configuration. Edit app/config/config.yml

framework:
  translator:
    enabled: false
1
votes

to disable translation logger set this in config/packages/translation.yaml

framework:
  translator:
    logging: false

see the reference for the translator section in FrameworkBundle's Configuration: https://symfony.com/doc/current/reference/configuration/framework.html#translator