语言配置

reco_luan2022-06-07 22:30:37

介绍

这些选项用于配置与语言相关的文本。

如果你的站点是以英语以外的其他语言提供服务的,你应该为每个语言设置这些选项来提供翻译。

多语言配置请参考 官方文档open in new window

配置

参数类型默认值描述
categoriesTextstringCategories分类
tagsTextstringTags标签
catalogTitlestringON THIS PAGE文章右侧目录的标题
selectLanguageNamestring${lang}Locale 的语言名称
editLinkTextstringEdit this page编辑此页 链接的文字
lastUpdatedTextstringLast Updated最近更新时间戳 标签的文字
tipstringTIP自定义提示容器的标题
infostringINFO自定义信息容器的标题
warningstringWARNING自定义警告容器的标题
dangerstringDANGER自定义危险容器的标题
detailsstringDETAILS自定义详情容器的标题
notFoundstringOops! Page does not exist.404 页面文案
backToHomestringBack To Home404 页面返回首页文案
inputPasswordTextstringPlease enter the password密码输入提示
unlockSucessTextstringSuccess, enjoy it!密码输入正确提示
unlockFailuerTextstringFailed, please enter again!密码输入错误提示

案例

// .vuepress/config.ts

import { defineUserConfig } from 'vuepress'
import { recoTheme } from 'vuepress-theme-reco'

export default defineUserConfig({
  theme: recoTheme({
      tip: '提示',
      info: '信息',
      danger: '危险',
      warning: '警告',
      details: '详情',
      tagsText: '标签',
      backToHome: '返回首页',
      categoriesText: '分类',
      catalogTitle: '页面导航',
      editLinkText: '编辑当前页面',
      lastUpdatedText: '最后更新时间',
      selectLanguageName: '简体中文',
      notFound: '哇哦,没有发现这个页面!',
      inputPasswordText: '请输入密码',
      unlockSucessText: '密码正确,玩得开心!',
      unlockFailuerText: '密码错误,请重新输入!'
  })
})
最后更新时间 1/12/2025, 4:05:17 PM
页面导航