forked from samuelmeuli/mini-diary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zhTw.ts
133 lines (119 loc) · 3.79 KB
/
zhTw.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
import { Translations } from "../../../shared/types";
const translationsZhTw: Partial<Translations> = {
// Menu (defined by macOS)
"about-app": "關於{appName}",
"bring-all-to-front": "將此程式所有視窗移至最前",
close: "關閉",
copy: "拷貝",
cut: "剪下",
edit: "編輯",
file: "檔案",
help: "輔助說明",
"hide-app": "隱藏{appName}",
"hide-others": "隱藏其他",
minimize: "縮到最小",
paste: "貼上",
preferences: "偏好設定",
"quit-app": "結束{appName}",
redo: "重做",
"select-all": "全選",
"show-all": "顯示全部",
speech: "語音",
"start-speaking": "開始朗讀",
"stop-speaking": "停止朗讀",
undo: "還原",
view: "顯示方式",
window: "視窗",
zoom: "縮放",
// Menu (app-specific)
export: "輸出",
"export-to-format": "輸出至{format}",
import: "輸入⋯",
"import-from-format": "從{format}輸入",
license: "許可協議",
"lock-diary": "鎖定日記",
"next-day": "向後一天",
"next-month": "向後一個月",
"previous-day": "往回一天",
"previous-month": "往回一個月",
"privacy-policy": "隱私權政策",
statistics: "統計數據",
website: "官方網站",
// Weekdays
sunday: "星期日",
monday: "星期一",
tuesday: "星期二",
wednesday: "星期三",
thursday: "星期四",
friday: "星期五",
saturday: "星期六",
// Theme
dark: "深色",
light: "淺色",
theme: "主題",
// Calendar
today: "今天",
// Editor
"add-a-title": "新增標題",
bold: "粗體",
bullets: "項目清單",
italic: "斜體",
list: "編號清單",
"write-something": "寫點什麼",
// Search
clear: "清除",
"no-results": "沒有結果",
"no-title": "沒有標題",
search: "搜尋",
// Preferences
"allow-future-entries": "允許新增未來的條目",
auto: "自動",
"diary-entries": "日記條目",
"first-day-of-week": "一周的第一天",
no: "取消",
"reset-diary": "重置日記本",
"reset-diary-confirm": "好,我確定",
"reset-diary-msg": "你確定要重置日記本嗎?這個動作會刪除你所有的內容。檔案將無法取回。",
// Password and directory
"change-directory": "更改路徑",
"change-password": "更換密碼",
"choose-password": "請為您的日記設定一個密碼",
"decryption-error": "加密過程中發生了錯誤",
"diary-file": "日記檔案",
"file-exists": "目標路徑已存在其它檔案",
"move-error-msg": "搬移過程中發生了錯誤",
"move-error-title": "搬移錯誤",
"move-file": "搬移文件",
"new-password": "新密碼",
password: "密碼",
"passwords-no-match": "密碼不符。",
"repeat-new-password": "驗證新密碼",
"repeat-password": "驗證",
"select-directory": "選擇路徑",
"set-password": "設定密碼",
unlock: "解鎖",
"wrong-password": "密碼錯誤",
// Statistics
"total-entries": "篇日記(總計)",
"entries-per-week": "篇日記(每週)",
"streak-best": "篇連續日記(紀錄)",
"streak-current": "篇連續日記(當前)",
"total-words": "個字(總計)",
"words-per-entry": "個字(每篇平均)",
// Import
"import-error-msg": "輸入過程中發生了錯誤",
"import-error-title": "輸入錯誤",
"import-instructions-day-one":
"打開 Day One ,依次點擊 File → Export → {format},輸出檔案並且解壓縮,然後將解壓縮後的文件輸入 {appName} 。",
"import-instructions-jrnl":
"要輸出 jrnl 檔案,請執行命令 {command}. 然後將輸出的 JSON 檔案輸入 {appName} 。",
"import-instructions-mini-diary":
"你可以將之前由 {appName} 輸出的 JSON 檔案或者其它相同格式的 JSON 檔案輸入。",
"start-import": "開始輸入",
// Export
"export-error-msg": "輸出過程中發生了錯誤",
"export-error-title": "輸出錯誤",
// Other
loading: "讀取中",
};
export default translationsZhTw;