Symfony 模板不在 EasyAdmin 中呈现标签
Symfony template does not render labels in EasyAdmin
而不是解释 {{ list.page_title }}
之类的东西,它只是呈现为 list.page_title
、paginator.next
、action.search
等。我在调试中没有收到任何错误工具栏或开发日志。我已经清除了缓存。
我是否遗漏了某些设置?我该如何解决这个问题或找出错误所在?
确保在config.yml
中启用了翻译服务
framework:
translator: { fallbacks: [ "en" ] }
有关更多翻译定制,请参阅:https://symfony.com/doc/current/bundles/EasyAdminBundle/tutorials/i18n.html
而不是解释 {{ list.page_title }}
之类的东西,它只是呈现为 list.page_title
、paginator.next
、action.search
等。我在调试中没有收到任何错误工具栏或开发日志。我已经清除了缓存。
我是否遗漏了某些设置?我该如何解决这个问题或找出错误所在?
确保在config.yml
中启用了翻译服务framework:
translator: { fallbacks: [ "en" ] }
有关更多翻译定制,请参阅:https://symfony.com/doc/current/bundles/EasyAdminBundle/tutorials/i18n.html