-
Notifications
You must be signed in to change notification settings - Fork 6.5k
Expand file tree
/
Copy pathzh-tw.json
More file actions
298 lines (298 loc) · 10.5 KB
/
zh-tw.json
File metadata and controls
298 lines (298 loc) · 10.5 KB
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
{
"components": {
"containers": {
"footer": {
"links": {
"trademarkPolicy": "商標政策",
"privacyPolicy": "隱私政策",
"versionSupport": "版本支援",
"codeOfConduct": "行為準則",
"security": "安全性政策"
}
},
"navBar": {
"controls": {
"toggle": "切換導覽選單"
},
"links": {
"about": "關於",
"download": "下載",
"docs": "文件",
"guides": "指南",
"learn": "學習資源",
"security": "安全性",
"certification": "認證",
"blog": "部落格",
"contribute": "貢獻"
}
}
},
"navigation": {
"learn": {
"gettingStarted": {
"links": {
"gettingStarted": "開始入門",
"introductionToNodejs": "Node.js 介紹",
"howMuchJavascriptDoYouNeedToKnowToUseNodejs": "使用 Node.js 前,需要掌握多少 JavaScript 知識?",
"differencesBetweenNodejsAndTheBrowser": "Node.js 與瀏覽器的差別",
"theV8JavascriptEngine": "JavaScript V8 引擎",
"anIntroductionToTheNpmPackageManager": "Npm 套件管理器介紹",
"ecmascript2015Es6AndBeyond": "ECMAScript 2015 (ES6) 與更高的版本",
"nodejsTheDifferenceBetweenDevelopmentAndProduction": "Node.js 在開發與生產環境的差別",
"nodejsWithWebassembly": "Node.js 搭配 WebAssembly",
"debugging": "Node.js 除錯",
"profiling": "分析 Node.js 應用程式",
"fetch": "以 Node.js 獲取 (fetch) 資料",
"websocket": "Node.js WebSocket 用戶端",
"securityBestPractices": "安全最佳實踐"
}
},
"typescript": {
"links": {
"typescript": "TypeScript",
"introduction": "TypeScript 介紹",
"transpile": "透過翻譯執行 TypeScript 程式碼。",
"run": "透過執行器執行 TypeScript",
"runNatively": "原生執行 TypeScript",
"publishingTSPackage": "發佈 TypeScript 套件"
}
},
"asynchronousWork": {
"links": {
"asynchronousWork": "非同步工作",
"asynchronousFlowControl": "非同步流程控制",
"overviewOfBlockingVsNonBlocking": "阻塞與非阻塞概述",
"javascriptAsynchronousProgrammingAndCallbacks": "JavaScript 中的非同步程式與回呼函式",
"discoverJavascriptTimers": "探索 JavaScript 計時器",
"eventLoopTimersAndNexttick": "Node.js 中的事件循環",
"theNodejsEventEmitter": "Node.js 中的事件發射器",
"understandingProcessnexttick": "理解 process.nextTick()",
"understandingSetimmediate": "理解 setImmediate()",
"dontBlockTheEventLoop": "請勿阻塞事件循環"
}
},
"manipulatingFiles": {
"links": {
"manipulatingFiles": "檔案操作",
"nodejsFileStats": "Node.js 中的檔案狀態",
"nodejsFilePaths": "Node.js 中的檔案路徑",
"workingWithFileDescriptorsInNodejs": "在 Node.js 中使用檔案描述符",
"readingFilesWithNodejs": "使用 Node.js 讀取檔案",
"writingFilesWithNodejs": "使用 Node.js 寫入檔案",
"workingWithFoldersInNodejs": "在 Node.js 中操作資料夾",
"workingWithDifferentFilesystems": "如何使用不同的檔案系統"
}
},
"commandLine": {
"links": {
"commandLine": "命令列",
"runNodejsScriptsFromTheCommandLine": "使用命令列執行 Node.js 指令稿",
"howToReadEnvironmentVariablesFromNodejs": "如何從 Node.js 中讀取環境變數",
"howToUseTheNodejsRepl": "如何使用 Node.js REPL",
"outputToTheCommandLineUsingNodejs": "使用 Node.js 輸出到命令列",
"acceptInputFromTheCommandLineInNodejs": "在 Node.js 中接受命令列輸入"
}
},
"modules": {
"links": {
"modules": "模塊",
"publishingAPackage": "發布套件",
"publishingNodeApiModules": "如何釋出 Node-API 套件",
"anatomyOfAnHttpTransaction": "HTTP 事務解析",
"abiStability": "ABI 穩定性",
"howToUseStreams": "如何使用串流",
"backpressuringInStreams": "串流中的背壓機制"
}
},
"diagnostics": {
"links": {
"diagnostics": "診斷訊息",
"userJourney": "使用者旅程",
"memory": "記憶體",
"liveDebugging": "即時偵錯",
"poorPerformance": "低效能",
"flameGraphs": "火焰圖"
}
},
"testRunner": {
"links": {
"testRunner": "測試執行器",
"introduction": "探索 Node.js 中的測試執行器",
"usingTestRunner": "使用 Node.js 中的測試執行器",
"mocking": "在測試中模擬物件",
"collectingCodeCoverage": "在 Node.js 中搜集程式碼覆蓋率"
}
}
},
"about": {
"links": {
"about": "關於 Node.js",
"aboutSide": "關於 Node.js®",
"branding": "Node.js 的品牌形象",
"governance": "專案治理",
"releases": "Node.js 版本",
"security": "安全性回報"
}
},
"getInvolved": {
"links": {
"getInvolved": "加入我們",
"collabSummit": "協作高峰會",
"upcomingEvents": "近期活動",
"contribute": "為 Node.js 做出貢獻",
"codeOfConduct": "行為準則"
}
}
},
"downloadReleasesTable": {
"version": "Node.js",
"nApiVersion": "N-API",
"npmVersion": "npm",
"codename": "代號",
"releaseDate": "發佈於",
"actions": {
"changelog": "更新紀錄",
"releases": "發行版本",
"docs": "文件"
}
},
"pagination": {
"next": "下一頁",
"previous": "上一頁"
},
"common": {
"alertBox": {
"info": "資訊",
"warning": "警告",
"danger": "危險"
},
"breadcrumbs": {
"navigateToHome": "返回首頁"
},
"crossLink": {
"previous": "上一頁",
"next": "下一頁"
},
"codebox": {
"copy": "複製到剪貼簿",
"copied": "已複製到剪貼簿!"
},
"pagination": {
"prev": "上一頁",
"prevAriaLabel": "上一頁",
"next": "下一頁",
"nextAriaLabel": "下一頁",
"defaultLabel": "分頁",
"pageLabel": "前往頁面 {pageNumber}"
},
"sidebar": {
"title": "變更頁面"
},
"languageDropdown": {
"label": "選擇語言"
},
"themeToggle": {
"label": "切換深色模式"
}
},
"metabar": {
"lastUpdated": "最後更新",
"readingTime": "閱讀時間",
"addedIn": "新增於",
"author": "作者",
"authors": "作者",
"contribute": "貢獻",
"contributeText": "編輯此頁面",
"viewAs": "檢視模式",
"tableOfContents": "目錄"
},
"search": {
"searchBox": {
"placeholder": "開始輸入…"
}
},
"blog": {
"blogHeader": {
"subtitle": "最新的 Node.js 動態、案例研究、教學和資源。",
"rssLink": "RSS 訂閱"
}
}
},
"layouts": {
"blogPost": {
"author": {
"byLine": "{author, select, null {} other {By {author}, }}"
}
},
"blogIndex": {
"categoryName": "{category, select, all {Blog} other {{category} Blog Posts}}"
},
"blog": {
"title": "部落格",
"selectCategory": "類別",
"categories": {
"all": "所有內容",
"announcements": "公告",
"release": "版本釋出",
"vulnerability": "漏洞",
"advisory-board": "諮詢委員會",
"community": "社群",
"feature": "功能",
"module": "模塊",
"npm": "npm",
"uncategorized": "未歸類",
"video": "影片",
"weekly": "每週更新",
"wg": "工作小組",
"events": "活動"
}
},
"error": {
"notFound": {
"title": "找不到頁面",
"description": "很抱歉,查無目標頁面!請從首頁重新開始。"
},
"internalServerError": {
"title": "內部伺服器錯誤",
"description": "此頁面發生了無法恢復的錯誤。"
},
"backToHome": "回到首頁"
},
"download": {
"buttons": {
"installer": "{os} 安裝程式 (.{extension})",
"binary": "獨立可執行檔 (.{extension})"
},
"dropdown": {
"platform": "平台",
"os": "作業系統",
"version": "版本",
"installMethod": "安裝方式",
"packageManager": "套件管理程式",
"unknown": "未知",
"platformGroups": {
"official": "推薦(官方)",
"unofficial": "社群(非官方)"
}
},
"codeBox": {
"unsupportedVersionWarning": "此版本已不再維護,請改用現正支援的版本。<link>了解更新終止 (EOL) 支援</link>。",
"communityPlatformInfo": "涉及社群軟體的安裝方式由其維護團隊提供支援。",
"externalSupportInfo": "若您遇到任何問題,請造訪 <link>{platform} 網站</link>",
"noScriptDetected": "此網頁需要使用 JavaScript。您可以直接造訪 <link>發行網頁</link> 以下載 Node.js,無需 JavaScript。",
"platformInfo": {
"default": "套件管理器與其安裝指令稿並非由 Node.js 專案維護。",
"nvm": "「nvm」是跨平台的 Node.js 版本管理程式。",
"fnm": "「fnm」是跨平台的 Node.js 版本管理程式。",
"brew": "Homebrew 是 macOS 及 Linux 的套件管理程式。",
"choco": "Chocolatey 是 Windows 的套件管理程式。",
"devbox": "Devbox 會建立隔離且可重現的開發環境。",
"docker": "Docker 是一款容器化平台。",
"n": "「n」是跨平台的 Node.js 版本管理程式。",
"volta": "「Volta」是跨平台的 Node.js 版本管理程式。"
}
}
},
"logo": "Node.js 標誌"
}
}