I am building single language Symfony (v4.4.7) application.As I understood from the documentation I need to set
framework: default_locale: tr translator: default_path: '%kernel.project_dir%/translations' fallbacks: - en
in config/packages/translation.yamlto change lang in the whole application.
Using configuration above custom translations are working!However, Symfony Security library still showing messages in English (e.g Invalid credentials.
when user password is incorrect).Removing default_path: '%kernel.project_dir%/translations'
line does not help.I tried to change the default_locale
to other languages still the same result.