我正在使用SonataAdminBundle,我不知道如何在制作表单时更改按钮名称和标题创建。我认为这很容易做到,但我在官方文档中找不到任何东西。我想我必须更改我的配置yml…提前谢谢。
您可以定义自己的翻译
//copied from profiler
Locale | Domain |Times used | Message ID | Message Preview
de | SonataAdminBundle | 2 | title_create | Hinzufügen
假设您使用新的应用程序结构,用于德语翻译并使用yaml:
使用创建一个文件${APP_ROOT}/翻译/SonataAdminBundle.de.yml
title_create: your own create title
有关yaml以外的格式,请参阅https://symfony.com/doc/current/translation.html#translation-资源
不要忘记在创建文件后清除缓存!
php bin/console cache:clear