如何在 SonataAdminBundle 中设置 title_create 和按钮名称?
How to set title_create and button name in SonataAdminBundle?
我正在使用 SonataAdminBundle,但我不知道如何在创建表单时更改我的按钮名称和 title_create。我认为这很容易做到,但我在官方文档中找不到任何内容。我想我必须改变我的 config.yml.. 在此先感谢。
您可以定义自己的翻译
//copied from profiler
Locale | Domain |Times used | Message ID | Message Preview
de | SonataAdminBundle | 2 | title_create | Hinzufügen
假设您使用新的应用程序结构,进行德语翻译并使用 yaml:
使用
创建文件 ${APP_ROOT}/translations/SonataAdminBundle.de.yml
title_create: your own create title
对于 yaml 以外的格式,请参阅
https://symfony.com/doc/current/translation.html#translation-resources
创建文件后不要忘记清除缓存!
php bin/console cache:clear
我正在使用 SonataAdminBundle,但我不知道如何在创建表单时更改我的按钮名称和 title_create。我认为这很容易做到,但我在官方文档中找不到任何内容。我想我必须改变我的 config.yml.. 在此先感谢。
您可以定义自己的翻译
//copied from profiler
Locale | Domain |Times used | Message ID | Message Preview
de | SonataAdminBundle | 2 | title_create | Hinzufügen
假设您使用新的应用程序结构,进行德语翻译并使用 yaml:
使用
创建文件 ${APP_ROOT}/translations/SonataAdminBundle.de.ymltitle_create: your own create title
对于 yaml 以外的格式,请参阅 https://symfony.com/doc/current/translation.html#translation-resources
创建文件后不要忘记清除缓存!
php bin/console cache:clear