master
1import type { NamespaceWebTranslation } from '../../i18n-types.js';
2
3const zh_CN_web = {
4 common: {
5 open: '打开',
6 close: '关闭',
7 refresh: '刷新',
8 },
9 navigation: {
10 title: '导航',
11 home: '首页',
12 about: '关于',
13 archive: {
14 title: '归档',
15 time: '时间',
16 tags: '标签',
17 categories: '分类',
18 },
19 friendLinks: '友链',
20 menu: '菜单',
21 prevPage: '上一页',
22 nextPage: '下一页',
23 recentPosts: '最近文章',
24 },
25 status: {
26 totalPosts: '文章总数',
27 totalWords: '字数总计',
28 lastUpdated: '最后更新',
29 runTime: '运行时间',
30 wordsCount: '{0} 字',
31 readTime: '{0} 分钟',
32 postsCount: '{0} 篇文章',
33 tagsCount: '{0} 个标签',
34 categoriesCount: '{0} 个分类',
35 },
36 button: {
37 search: '搜索',
38 subscribe: '订阅',
39 more: '更多',
40 themeToggle: {
41 title: '主题切换',
42 lightMode: '亮色',
43 darkMode: '暗色',
44 systemMode: '跟随系统',
45 },
46 },
47 meta: {
48 author: '作者',
49 publishedAt: '发布时间',
50 license: '许可协议',
51 tags: '标签',
52 category: '分类',
53 unTagged: '无标签',
54 unCategorized: '未分类',
55 wordsCount: '字数统计',
56 readingTime: '阅读时间',
57 },
58 info: {
59 toc: '目录',
60 fastActions: '快捷操作',
61 readingPercentage: '阅读进度',
62 comments: '评论',
63 recentComments: '最新评论',
64 commentAbbrs: {
65 image: '[图片]',
66 link: '[链接]',
67 code: '[代码]',
68 collapsed: '[已折叠]',
69 pending: '[待审]',
70 },
71 backLinks: '反向链接',
72 devNote:
73 '这是一个草稿,只会在 <code>DEV</code> 模式下显示。要禁用草稿预览,请在 <code>{configFilePath}</code> 中将 <code>{configKey}</code> 修改为 <code>{configValue}</code>。',
74 openMenu: '打开菜单',
75 closeMenu: '关闭菜单',
76 },
77 search: {
78 title: '搜索',
79 placeholder: '搜索任何内容...',
80 searchResults: '搜索结果',
81 noSearchResults: '没有找到结果',
82 },
83} satisfies NamespaceWebTranslation;
84
85export default zh_CN_web;