我使用主题seedstack Business Theme开发一个应用程序,默认主题使用home选项卡生成seedbare部分,如何通过acceuil或其他单词更改home?
附图显示了我的问题。
!sidebare picture where i want to change the term home for acceuil
这是w20.app.json文件的代码:
{
"w20-core": {
"modules": {
"application": {
"home": "/accueil/accueil"
}
}
},
"w20-business-theme": {
"modules": {
"main": {
"sidebar": {
"width": 270
}
}
}
}
}

答案 0 :(得分:1)
侧边栏中的主页链接是自动生成的,其标签基于当前活动文化(或区域设置)中的i18n键w20.menu.sidebar.home
的翻译。
由于您尚未在应用程序中专门配置i18n,因此默认文化为通用英语('en')。要配置i18n,请将以下配置添加到w20.app.json文件中:
{
"w20-core": {
"modules": {
"culture": {
"available": [ "en", "fr" ] // add any culture you need
"default": "fr" // the default culture of your application
}
}
}
}
此配置使应用程序中的两种文化可用(通用英语和通用法语),默认使用通用法语。文化切换器将显示在顶部栏中。
W20仅提供英语和法语的翻译。如果您需要添加语言,则必须提供自己的翻译文件。查看the documentation以获取有关它的更多信息。