Labels in Sonata Admin Bundle

六月ゝ 毕业季﹏ 提交于 2019-11-30 03:38:46

for translate menu and forms override file: SonataAdminBundle.[your_language].xliff(with content from: vendor/sonata-project/admin-bundle/Sonata/AdminBundle/Resources/translations/SonataAdminBundle.[your_language].xliff), put file in:

app/Resource/SonataAdminBundle/translations/

full path:

app/Resource/SonataAdminBundle/translations/SonataAdminBundle.[your_language].xliff

If you want to translate your labels for field, you must create translate file in your bundle, for example:

src/YourAlias/YourNameOfBundle/Resources/translations/YourAliasYourNameOfBundle.[your_language].xliff

if your Admin class is in

src/YourAlias/YourNameOfBundle/Admin/YourClassAdmin.php

Sonata use FOSUserBundle and if you want change translation for users module, you must ovverride file: FOSUserBundle.[your_language].yml in:

app/Resource/FOSUSerBundle/translations/FOSUserBundle.[your_language].yml

and analogously for SonataUserBundle

I use that configuration and everything works!

Expanding on @mkjasinski's comment above, the Symfony Translation component expects to find a _locale property on the request. If this is missing, or no translation can be found for the specified locale, it uses a fallback value. However this fallback value is also blank by default hence seeing the translation labels instead of text.

To fix this, set the default translation locale by adding the following to config.yml:

framework:
  #...
  translator:
    fallback: %locale%
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!