saberland/saber

i18n support #87

egoist posted onGitHub

Similar to the solution in VuePress.

To enable multi-language support, you can use a special folder structure:

pages
ā”œā”€ about.md
ā””ā”€ zh-cn
   ā””ā”€ about.md

Then, specify the locales option in saber-config.js:

module.exports = {
  siteConfig: {
    lang: 'en-US',
    title: 'My Website'
  },
  locales: {
    '/zh-cn': {
      siteConfig: {
        lang: 'zh-cn',
        title: 'ꈑēš„ē½‘ē«™'
      }
    }
  }
}

You can override siteConfig and themeConfig in locales option.

this.$siteConfig will be computed based on $route.path:

// Under `/`:
this.$siteConfig
{
  lang: 'en-US',
  title: 'My Website'
}

// Under `/zh-cn`:
this.$siteConfig
{
  lang: 'zh-cn',
  title: 'ꈑēš„ē½‘ē«™'
}

Fund this Issue

$50.00
Rewarded

Rewarded pull request

Recent activities

egoist was rewarded for saberland/saber# 87
almost 6 years ago
egoist submitted an output to  saberland/ saber# 87
almost 6 years ago