-2

我使用seedstack Business Theme主题开发应用程序,默认主题生成带有home选项卡的seedbare部分,如何通过acceuil或其他词更改home?

附图显示了我的问题。

!sidebare 图片,我想将 home 一词更改为 acceuil

这是 w20.app.json 文件的代码:

{
  "w20-core": {
    "modules": {
      "application": {
        "home": "/accueil/accueil"
      }
    }
  },
     "w20-business-theme": {
       "modules": {
           "main": {
               "sidebar": {
                   "width": 270
               }
           }
       }
   }
  
}

4

1 回答 1

1

侧边栏中的主页链接是自动生成的,其标签基于w20.menu.sidebar.home当前活动文化(或语言环境)中 i18n 键的翻译。

由于您尚未在应用程序中专门配置 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 仅提供英文和法文翻译。如果您需要添加语言,您必须提供自己的翻译文件。查看文档以获取有关它的更多信息。

于 2016-09-19T09:00:00.713 回答