如何在 seedstack 商业主题中将主页更改为 accueil
howa to change home to accueil in seedstack Business Theme
我使用主题 seedstack Business Theme 开发应用程序,默认主题生成带主页选项卡的 seedbare 部分,如何通过 acceuil 或其他词更改主页?
附图显示了我的问题。
!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
}
}
}
}
}
侧边栏中的主页 link 是自动生成的,其标签基于当前活动文化(或区域设置)中 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 了解更多信息。
我使用主题 seedstack Business Theme 开发应用程序,默认主题生成带主页选项卡的 seedbare 部分,如何通过 acceuil 或其他词更改主页?
附图显示了我的问题。
!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
}
}
}
}
}
侧边栏中的主页 link 是自动生成的,其标签基于当前活动文化(或区域设置)中 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 了解更多信息。