master
1import type { NamespaceWebTranslation } from '../../i18n-types.js';
2
3const zh_TW_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_TW_web;