Jean Bidon
Jean Bidon

Reputation: 171

How to disable the Symfony translation for specific bundles

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.

Upvotes: 17

Views: 10294

Answers (2)

kaznovac
kaznovac

Reputation: 1572

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

Upvotes: 2

Vadim  Kharitonov
Vadim Kharitonov

Reputation: 1000

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

framework:
  translator:
    enabled: false

Upvotes: 27

Related Questions