From 50ae196ce72abc6152d4224bf84486e7bd6defc3 Mon Sep 17 00:00:00 2001 From: EnochGao Date: Tue, 20 Dec 2022 11:43:51 +0800 Subject: [PATCH] feat: add footer.ts file in zh --- docs/typescriptlang/zh/footer.ts | 8 ++++++++ docs/typescriptlang/zh/zh.ts | 2 ++ 2 files changed, 10 insertions(+) create mode 100644 docs/typescriptlang/zh/footer.ts diff --git a/docs/typescriptlang/zh/footer.ts b/docs/typescriptlang/zh/footer.ts new file mode 100644 index 00000000..d58bec14 --- /dev/null +++ b/docs/typescriptlang/zh/footer.ts @@ -0,0 +1,8 @@ +export const footerCopy = { + footer_customize: "自定义", + footer_site_colours: "站点颜色", + footer_code_font: "代码字体", + footer_site_colours_options_system: "系统", + footer_site_colours_options_always_light: "明亮", + footer_site_colours_options_always_dark: "暗夜", +} \ No newline at end of file diff --git a/docs/typescriptlang/zh/zh.ts b/docs/typescriptlang/zh/zh.ts index 79ce65da..7766f71a 100644 --- a/docs/typescriptlang/zh/zh.ts +++ b/docs/typescriptlang/zh/zh.ts @@ -7,6 +7,7 @@ import { docCopy } from "./documentation" import { indexCopy } from "./index" import { comCopy } from "./community" import { handbookCopy } from "./handbook" +import { footerCopy } from "./footer" export const lang = defineMessages({ ...englishMessages, @@ -17,4 +18,5 @@ export const lang = defineMessages({ ...playCopy, ...comCopy, ...handbookCopy, + ...footerCopy, })