-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.nls.zh-tw.json
246 lines (246 loc) · 26.1 KB
/
package.nls.zh-tw.json
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
{
"command.addon_manager.open": "Lua: Open Addon Manager ...",
"command.exportDocument": "Lua: Export Document ...",
"command.reloadFFIMeta": "Lua: Reload luajit ffi meta",
"command.startServer": "Lua: (debug) Start Language Server",
"command.stopServer": "Lua: (debug) Stop Language Server",
"config.addonManager.enable": "Whether the addon manager is enabled or not.",
"config.addonManager.repositoryBranch": "Specifies the git branch used by the addon manager.",
"config.addonManager.repositoryPath": "Specifies the git path used by the addon manager.",
"config.codeLens.enable": "Enable code lens.",
"config.color.mode": "著色模式。",
"config.color.mode.Grammar": "語法著色。",
"config.color.mode.Semantic": "語義著色。你可能需要同時將 `editor.semanticHighlighting.enabled` 設定為 `true` 才能生效。",
"config.color.mode.SemanticEnhanced": "增強的語義顏色。類似於`Semantic`,但會進行額外的分析(也會帶來額外的開銷)。",
"config.completion.autoRequire": "輸入內容看起來是個檔名時,自動 `require` 此檔案。",
"config.completion.callSnippet": "顯示函式呼叫片段。",
"config.completion.callSnippet.Both": "顯示 `函式名` 與 `呼叫片段`。",
"config.completion.callSnippet.Disable": "只顯示 `函式名`。",
"config.completion.callSnippet.Replace": "只顯示 `呼叫片段`。",
"config.completion.displayContext": "預覽建議的相關程式碼片段,可能可以幫助你瞭解這項建議的用法。設定的數字表示程式碼片段的擷取行數,設定為 `0` 可以停用此功能。",
"config.completion.enable": "啟用自動完成。",
"config.completion.keywordSnippet": "顯示關鍵字語法片段。",
"config.completion.keywordSnippet.Both": "顯示 `關鍵字` 與 `語法片段`。",
"config.completion.keywordSnippet.Disable": "只顯示 `關鍵字`。",
"config.completion.keywordSnippet.Replace": "只顯示 `語法片段`。",
"config.completion.postfix": "用於觸發後綴建議的符號。",
"config.completion.requireSeparator": "`require` 時使用的分隔符。",
"config.completion.showParams": "在建議列表中顯示函式的參數資訊,函式擁有多個定義時會分開顯示。",
"config.completion.showWord": "在建議中顯示上下文單詞。",
"config.completion.showWord.Disable": "不顯示上下文單詞。",
"config.completion.showWord.Enable": "總是在建議中顯示上下文單詞。",
"config.completion.showWord.Fallback": "無法根據語義提供建議時才顯示上下文單詞。",
"config.completion.workspaceWord": "顯示的上下文單詞是否包含工作區中其他檔案的內容。",
"config.develop.debuggerPort": "除錯器監聽埠。",
"config.develop.debuggerWait": "除錯器連接之前懸置。",
"config.develop.enable": "開發者模式。請勿開啟,會影響效能。",
"config.diagnostics.ambiguity": "* ambiguity-1\n* count-down-loop\n* different-requires\n* newfield-call\n* newline-call",
"config.diagnostics.ambiguity-1": "優先順序歧義,如: `num or 0 + 1` ,推測使用者的實際期望為 `(num or 0) + 1`",
"config.diagnostics.assign-type-mismatch": "Enable diagnostics for assignments in which the value's type does not match the type of the assigned variable.",
"config.diagnostics.await": "* await-in-sync\n* not-yieldable",
"config.diagnostics.await-in-sync": "Enable diagnostics for calls of asynchronous functions within a synchronous function.",
"config.diagnostics.cast-local-type": "Enable diagnostics for casts of local variables where the target type does not match the defined type.",
"config.diagnostics.cast-type-mismatch": "Enable diagnostics for casts where the target type does not match the initial type.",
"config.diagnostics.circle-doc-class": "TODO: Needs documentation",
"config.diagnostics.circular-doc-class": "Enable diagnostics for two classes inheriting from each other introducing a circular relation.",
"config.diagnostics.close-non-object": "Enable diagnostics for attempts to close a variable with a non-object.",
"config.diagnostics.code-after-break": "Enable diagnostics for code placed after a break statement in a loop.",
"config.diagnostics.codestyle": "* codestyle-check\n* name-style-check\n* spell-check",
"config.diagnostics.codestyle-check": "Enable diagnostics for incorrectly styled lines.",
"config.diagnostics.conventions": "* global-element",
"config.diagnostics.count-down-loop": "Enable diagnostics for `for` loops which will never reach their max/limit because the loop is incrementing instead of decrementing.",
"config.diagnostics.deprecated": "Enable diagnostics to highlight deprecated API.",
"config.diagnostics.different-requires": "Enable diagnostics for files which are required by two different paths.",
"config.diagnostics.disable": "停用的診斷(使用浮框括號內的程式碼)。",
"config.diagnostics.disableScheme": "不診斷使用以下 scheme 的lua檔案。",
"config.diagnostics.discard-returns": "Enable diagnostics for calls of functions annotated with `---@nodiscard` where the return values are ignored.",
"config.diagnostics.doc-field-no-class": "Enable diagnostics to highlight a field annotation without a defining class annotation.",
"config.diagnostics.duplicate": "* duplicate-index\n* duplicate-set-field",
"config.diagnostics.duplicate-doc-alias": "Enable diagnostics for a duplicated alias annotation name.",
"config.diagnostics.duplicate-doc-field": "Enable diagnostics for a duplicated field annotation name.",
"config.diagnostics.duplicate-doc-param": "Enable diagnostics for a duplicated param annotation name.",
"config.diagnostics.duplicate-index": "在字面常數表中重複定義了索引",
"config.diagnostics.duplicate-set-field": "Enable diagnostics for setting the same field in a class more than once.",
"config.diagnostics.empty-block": "空程式碼區塊",
"config.diagnostics.enable": "啟用診斷。",
"config.diagnostics.global": "* global-in-nil-env\n* lowercase-global\n* undefined-env-child\n* undefined-global",
"config.diagnostics.global-element": "Enable diagnostics to warn about global elements.",
"config.diagnostics.global-in-nil-env": "不能使用全域變數( `_ENV` 被設定為 `nil`)",
"config.diagnostics.globals": "已定義的全域變數。",
"config.diagnostics.globalsRegex": "Find defined global variables using regex.",
"config.diagnostics.groupFileStatus": "批量修改一個組中的檔案狀態。\n\n* Opened: 只診斷打開的檔案\n* Any: 診斷所有檔案\n* None: 停用此診斷\n\n設定為 `Fallback` 意味著組中的診斷由 `diagnostics.neededFileStatus` 單獨設定。\n其他設定將覆蓋單獨設定,但是不會覆蓋以 `!` 結尾的設定。\n",
"config.diagnostics.groupSeverity": "批量修改一個組中的診斷等級。\n設定為 `Fallback` 意味著組中的診斷由 `diagnostics.severity` 單獨設定。\n其他設定將覆蓋單獨設定,但是不會覆蓋以 `!` 結尾的設定。\n",
"config.diagnostics.ignoredFiles": "如何診斷被忽略的檔案。",
"config.diagnostics.ignoredFiles.Disable": "不診斷這些檔案。",
"config.diagnostics.ignoredFiles.Enable": "總是診斷這些檔案。",
"config.diagnostics.ignoredFiles.Opened": "只有打開這些檔案時才會診斷。",
"config.diagnostics.incomplete-signature-doc": "Incomplete @param or @return annotations for functions.",
"config.diagnostics.inject-field": "TODO: Needs documentation",
"config.diagnostics.invisible": "Enable diagnostics for accesses to fields which are invisible.",
"config.diagnostics.libraryFiles": "如何診斷透過 `Lua.workspace.library` 載入的檔案。",
"config.diagnostics.libraryFiles.Disable": "不診斷這些檔案。",
"config.diagnostics.libraryFiles.Enable": "總是診斷這些檔案。",
"config.diagnostics.libraryFiles.Opened": "只有打開這些檔案時才會診斷。",
"config.diagnostics.lowercase-global": "首字母小寫的全域變數定義",
"config.diagnostics.luadoc": "* circle-doc-class\n* doc-field-no-class\n* duplicate-doc-alias\n* duplicate-doc-field\n* duplicate-doc-param\n* incomplete-signature-doc\n* missing-global-doc\n* missing-local-export-doc\n* undefined-doc-class\n* undefined-doc-name\n* undefined-doc-param\n* unknown-cast-variable\n* unknown-diag-code\n* unknown-operator",
"config.diagnostics.missing-fields": "TODO: Needs documentation",
"config.diagnostics.missing-global-doc": "Missing annotations for globals! Global functions must have a comment and annotations for all parameters and return values.",
"config.diagnostics.missing-local-export-doc": "Missing annotations for exported locals! Exported local functions must have a comment and annotations for all parameters and return values.",
"config.diagnostics.missing-parameter": "Enable diagnostics for function calls where the number of arguments is less than the number of annotated function parameters.",
"config.diagnostics.missing-return": "Enable diagnostics for functions with return annotations which have no return statement.",
"config.diagnostics.missing-return-value": "Enable diagnostics for return statements without values although the containing function declares returns.",
"config.diagnostics.name-style-check": "Enable diagnostics for name style.",
"config.diagnostics.need-check-nil": "Enable diagnostics for variable usages if `nil` or an optional (potentially `nil`) value was assigned to the variable before.",
"config.diagnostics.neededFileStatus": "* Opened: 只診斷打開的檔案\n* Any: 診斷所有檔案\n* None: 停用此診斷\n\n以 `!` 結尾的設定優先順序高於組設定 `diagnostics.groupFileStatus`。\n",
"config.diagnostics.newfield-call": "在字面常數表中,2行程式碼之間缺少分隔符,在語法上被解析為了一次索引操作",
"config.diagnostics.newline-call": "以 `(` 開始的新行,在語法上被解析為了上一行的函式呼叫",
"config.diagnostics.no-unknown": "Enable diagnostics for cases in which the type cannot be inferred.",
"config.diagnostics.not-yieldable": "Enable diagnostics for calls to `coroutine.yield()` when it is not permitted.",
"config.diagnostics.param-type-mismatch": "Enable diagnostics for function calls where the type of a provided parameter does not match the type of the annotated function definition.",
"config.diagnostics.redefined": "* redefined-local",
"config.diagnostics.redefined-local": "重複定義的區域變數",
"config.diagnostics.redundant-parameter": "函式呼叫時,傳入了多餘的引數",
"config.diagnostics.redundant-return": "Enable diagnostics for return statements which are not needed because the function would exit on its own.",
"config.diagnostics.redundant-return-value": "Enable diagnostics for return statements which return an extra value which is not specified by a return annotation.",
"config.diagnostics.redundant-value": "賦值操作時,值的數量比被賦值的對象多",
"config.diagnostics.return-type-mismatch": "Enable diagnostics for return values whose type does not match the type declared in the corresponding return annotation.",
"config.diagnostics.severity": "修改診斷等級。\n以 `!` 結尾的設定優先順序高於組設定 `diagnostics.groupSeverity`。\n",
"config.diagnostics.spell-check": "Enable diagnostics for typos in strings.",
"config.diagnostics.strict": "* close-non-object\n* deprecated\n* discard-returns\n* invisible",
"config.diagnostics.strong": "* no-unknown",
"config.diagnostics.trailing-space": "後置空格",
"config.diagnostics.type-check": "* assign-type-mismatch\n* cast-local-type\n* cast-type-mismatch\n* inject-field\n* need-check-nil\n* param-type-mismatch\n* return-type-mismatch\n* undefined-field",
"config.diagnostics.unbalanced": "* missing-fields\n* missing-parameter\n* missing-return\n* missing-return-value\n* redundant-parameter\n* redundant-return-value\n* redundant-value\n* unbalanced-assignments",
"config.diagnostics.unbalanced-assignments": "Enable diagnostics on multiple assignments if not all variables obtain a value (e.g., `local x,y = 1`).",
"config.diagnostics.undefined-doc-class": "Enable diagnostics for class annotations in which an undefined class is referenced.",
"config.diagnostics.undefined-doc-name": "Enable diagnostics for type annotations referencing an undefined type or alias.",
"config.diagnostics.undefined-doc-param": "Enable diagnostics for cases in which a parameter annotation is given without declaring the parameter in the function definition.",
"config.diagnostics.undefined-env-child": "`_ENV` 被設定為了新的字面常數表,但是試圖獲取的全域變數不在這張表中",
"config.diagnostics.undefined-field": "Enable diagnostics for cases in which an undefined field of a variable is read.",
"config.diagnostics.undefined-global": "未定義的全域變數",
"config.diagnostics.unknown-cast-variable": "Enable diagnostics for casts of undefined variables.",
"config.diagnostics.unknown-diag-code": "Enable diagnostics in cases in which an unknown diagnostics code is entered.",
"config.diagnostics.unknown-operator": "Enable diagnostics for unknown operators.",
"config.diagnostics.unreachable-code": "Enable diagnostics for unreachable code.",
"config.diagnostics.unused": "* code-after-break\n* empty-block\n* redundant-return\n* trailing-space\n* unreachable-code\n* unused-function\n* unused-label\n* unused-local\n* unused-vararg",
"config.diagnostics.unused-function": "未使用的函式",
"config.diagnostics.unused-label": "未使用的標籤",
"config.diagnostics.unused-local": "未使用的區域變數",
"config.diagnostics.unused-vararg": "未使用的不定引數",
"config.diagnostics.unusedLocalExclude": "Do not diagnose `unused-local` when the variable name matches the following pattern.",
"config.diagnostics.workspaceDelay": "進行工作區診斷的延遲(毫秒)。",
"config.diagnostics.workspaceEvent": "Set the time to trigger workspace diagnostics.",
"config.diagnostics.workspaceEvent.None": "Disable workspace diagnostics.",
"config.diagnostics.workspaceEvent.OnChange": "Trigger workspace diagnostics when the file is changed.",
"config.diagnostics.workspaceEvent.OnSave": "Trigger workspace diagnostics when the file is saved.",
"config.diagnostics.workspaceRate": "工作區診斷的執行速率(百分比)。降低該值會減少CPU使用率,但是也會降低工作區診斷的速度。你目前正在編輯的檔案的診斷總是全速完成,不受該選項影響。",
"config.doc.packageName": "Treat specific field names as package, e.g. `m_*` means `XXX.m_id` and `XXX.m_type` are package, witch can only be accessed in the file where the definition is located.",
"config.doc.privateName": "Treat specific field names as private, e.g. `m_*` means `XXX.m_id` and `XXX.m_type` are private, witch can only be accessed in the class where the definition is located.",
"config.doc.protectedName": "Treat specific field names as protected, e.g. `m_*` means `XXX.m_id` and `XXX.m_type` are protected, witch can only be accessed in the class where the definition is located and its subclasses.",
"config.doc.regengine": "TODO: Needs documentation",
"config.doc.regengine.glob": "TODO: Needs documentation",
"config.doc.regengine.lua": "TODO: Needs documentation",
"config.docScriptPath": "TODO: Needs documentation",
"config.format.defaultConfig": "預設的格式化組態,優先順序低於工作區內的 `.editorconfig` 檔案。\n請查閱[格式化文件](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs)了解用法。\n",
"config.format.enable": "啟用程式碼格式化程式。",
"config.hint.arrayIndex": "在建構表時提示陣列索引。",
"config.hint.arrayIndex.Auto": "只有表大於3項,或者表是混合類型時才進行提示。",
"config.hint.arrayIndex.Disable": "停用陣列索引提示。",
"config.hint.arrayIndex.Enable": "所有的表中都提示陣列索引。",
"config.hint.await": "如果呼叫的函數被標記為了 `---@async`,則在呼叫處提示 `await`。",
"config.hint.awaitPropagate": "啟用 `await` 的傳播,當一個函數呼叫了一個 `---@async` 標記的函數時,會自動標記為 `---@async`。",
"config.hint.enable": "啟用內嵌提示。",
"config.hint.paramName": "在函式呼叫處提示參數名。",
"config.hint.paramName.All": "所有類型的參數均進行提示。",
"config.hint.paramName.Disable": "停用參數提示。",
"config.hint.paramName.Literal": "只有字面常數類型的參數進行提示。",
"config.hint.paramType": "在函式的參數位置提示類型。",
"config.hint.semicolon": "若陳述式尾部沒有分號,則顯示虛擬分號。",
"config.hint.semicolon.All": "所有陳述式都顯示虛擬分號。",
"config.hint.semicolon.Disable": "停用虛擬分號。",
"config.hint.semicolon.SameLine": "兩個陳述式在同一行時,在它們之間顯示分號。",
"config.hint.setType": "在賦值操作位置提示類型。",
"config.hover.enable": "啟用懸浮提示。",
"config.hover.enumsLimit": "當值對應多個類型時,限制類型的顯示數量。",
"config.hover.expandAlias": "是否展開別名。例如 `---@alias myType boolean|number` 展開後顯示為 `boolean|number`,否則顯示為 `myType'。\n",
"config.hover.fieldInfer": "懸浮提示檢視表時,會對表的每個欄位進行類型推測,當類型推測的用時累計達到該設定值(毫秒)時,將跳過後續欄位的類型推測。",
"config.hover.previewFields": "懸浮提示檢視表時,限制表內欄位的最大預覽數量。",
"config.hover.viewNumber": "懸浮提示檢視數字內容(僅當字面常數不是十進制時)。",
"config.hover.viewString": "懸浮提示檢視字串內容(僅當字面常數包含跳脫字元時)。",
"config.hover.viewStringMax": "懸浮提示檢視字串內容時的最大長度。",
"config.intelliSense.fastGlobal": "在對全域變數進行補全,及檢視 `_G` 的懸浮提示時進行最佳化。這會略微降低類型推測的準確度,但是對於大量使用全域變數的專案會有大幅的效能提升。",
"config.intelliSense.searchDepth": "設定智慧感知的搜尋深度。增大該值可以增加準確度,但會降低效能。不同的工作區對該設定的容忍度差異較大,請自己調整為合適的值。",
"config.language.completeAnnotation": "(VSCode only) Automatically insert \"---@ \" after a line break following a annotation.",
"config.language.fixIndent": "(VSCode only) Fix incorrect auto-indentation, such as incorrect indentation when line breaks occur within a string containing the word \"function.\"",
"config.misc.executablePath": "Specify the executable path in VSCode.",
"config.misc.parameters": "VSCode中啟動語言伺服時的[命令列參數](https://luals.github.io/wiki/usage#arguments)。",
"config.nameStyle.config": "Set name style config",
"config.runtime.builtin": "調整內建庫的啟用狀態,你可以根據實際執行環境停用(或重新定義)不存在的庫。\n\n* `default`: 表示庫會根據執行版本啟用或停用\n* `enable`: 總是啟用\n* `disable`: 總是停用\n",
"config.runtime.builtin.basic": "TODO: Needs documentation",
"config.runtime.builtin.bit": "TODO: Needs documentation",
"config.runtime.builtin.bit32": "TODO: Needs documentation",
"config.runtime.builtin.builtin": "TODO: Needs documentation",
"config.runtime.builtin.coroutine": "TODO: Needs documentation",
"config.runtime.builtin.debug": "TODO: Needs documentation",
"config.runtime.builtin.ffi": "TODO: Needs documentation",
"config.runtime.builtin.io": "TODO: Needs documentation",
"config.runtime.builtin.jit": "TODO: Needs documentation",
"config.runtime.builtin.jit.profile": "TODO: Needs documentation",
"config.runtime.builtin.jit.util": "TODO: Needs documentation",
"config.runtime.builtin.math": "TODO: Needs documentation",
"config.runtime.builtin.os": "TODO: Needs documentation",
"config.runtime.builtin.package": "TODO: Needs documentation",
"config.runtime.builtin.string": "TODO: Needs documentation",
"config.runtime.builtin.string.buffer": "TODO: Needs documentation",
"config.runtime.builtin.table": "TODO: Needs documentation",
"config.runtime.builtin.table.clear": "TODO: Needs documentation",
"config.runtime.builtin.table.new": "TODO: Needs documentation",
"config.runtime.builtin.utf8": "TODO: Needs documentation",
"config.runtime.fileEncoding": "檔案編碼,選項 `ansi` 只在 `Windows` 平台下有效。",
"config.runtime.fileEncoding.ansi": "TODO: Needs documentation",
"config.runtime.fileEncoding.utf16be": "TODO: Needs documentation",
"config.runtime.fileEncoding.utf16le": "TODO: Needs documentation",
"config.runtime.fileEncoding.utf8": "TODO: Needs documentation",
"config.runtime.meta": "meta檔案的目錄名稱格式",
"config.runtime.nonstandardSymbol": "支援非標準的符號。請務必確認你的執行環境支援這些符號。",
"config.runtime.path": "當使用 `require` 時,如何根據輸入的名字來尋找檔案。\n此選項設定為 `?/init.lua` 意味著當你輸入 `require 'myfile'` 時,會從已載入的檔案中搜尋 `{workspace}/myfile/init.lua`。\n當 `runtime.pathStrict` 設定為 `false` 時,還會嘗試搜尋 `${workspace}/**/myfile/init.lua`。\n如果你想要載入工作區以外的檔案,你需要先設定 `Lua.workspace.library`。\n",
"config.runtime.pathStrict": "啟用後 `runtime.path` 將只搜尋第一層目錄,見 `runtime.path` 的説明。",
"config.runtime.plugin": "延伸模組路徑,請查閱[文件](https://luals.github.io/wiki/plugins)瞭解用法。",
"config.runtime.pluginArgs": "Additional arguments for the plugin.",
"config.runtime.special": "將自訂全域變數視為一些特殊的內建變數,語言伺服將提供特殊的支援。\n下面這個例子表示將 `include` 視為 `require` 。\n```json\n\"Lua.runtime.special\" : {\n \"include\" : \"require\"\n}\n```\n",
"config.runtime.unicodeName": "允許在名字中使用 Unicode 字元。",
"config.runtime.version": "Lua執行版本。",
"config.runtime.version.Lua 5.1": "TODO: Needs documentation",
"config.runtime.version.Lua 5.2": "TODO: Needs documentation",
"config.runtime.version.Lua 5.3": "TODO: Needs documentation",
"config.runtime.version.Lua 5.4": "TODO: Needs documentation",
"config.runtime.version.LuaJIT": "TODO: Needs documentation",
"config.semantic.annotation": "對類型註解進行語義著色。",
"config.semantic.enable": "啟用語義著色。你可能需要同時將 `editor.semanticHighlighting.enabled` 設定為 `true` 才能生效。",
"config.semantic.keyword": "對關鍵字/字面常數/運算子進行語義著色。只有當你的編輯器無法進行語法著色時才需要啟用此功能。",
"config.semantic.variable": "對變數/欄位/參數進行語義著色。",
"config.signatureHelp.enable": "啟用參數提示。",
"config.spell.dict": "拼寫檢查的自訂單詞。",
"config.telemetry.enable": "啟用遙測,透過網路發送你的編輯器資訊與錯誤日誌。在[此處](https://luals.github.io/privacy/#language-server)閱讀我們的隱私聲明。\n",
"config.type.castNumberToInteger": "允許將 `number` 類型賦值給 `integer` 類型。",
"config.type.checkTableShape": "对表的形状进行严格检查。\n",
"config.type.inferParamType": "未注释参数类型时,参数类型由函数传入参数推断。\n\n如果设置为 \"false\",则在未注释时,参数类型为 \"any\"。\n",
"config.type.inferTableSize": "TODO: Needs documentation",
"config.type.weakNilCheck": "When checking the type of union type, ignore the `nil` in it.\n\nWhen this setting is `false`, the `number|nil` type cannot be assigned to the `number` type. It can be with `true`.\n",
"config.type.weakUnionCheck": "同位類型中只要有一個子類型滿足條件,則同位類型也滿足條件。\n\n此設定為 `false` 時,`number|boolean` 類型無法賦給 `number` 類型;為 `true` 時則可以。\n",
"config.typeFormat.config": "Configures the formatting behavior while typing Lua code.",
"config.typeFormat.config.auto_complete_end": "Controls if `end` is automatically completed at suitable positions.",
"config.typeFormat.config.auto_complete_table_sep": "Controls if a separator is automatically appended at the end of a table declaration.",
"config.typeFormat.config.format_line": "Controls if a line is formatted at all.",
"config.window.progressBar": "在狀態欄顯示進度條。",
"config.window.statusBar": "在狀態欄顯示延伸模組狀態。",
"config.workspace.checkThirdParty": "自動偵測與適應第三方庫,目前支援的庫為:\n\n* OpenResty\n* Cocos4.0\n* LÖVE\n* LÖVR\n* skynet\n* Jass\n",
"config.workspace.ignoreDir": "忽略的檔案與目錄(使用 `.gitignore` 語法)。",
"config.workspace.ignoreSubmodules": "忽略子模組。",
"config.workspace.library": "除了目前工作區以外,還會從哪些目錄中載入檔案。這些目錄中的檔案將被視作外部提供的程式碼庫,部分操作(如重新命名欄位)不會修改這些檔案。",
"config.workspace.maxPreload": "最大預載入檔案數。",
"config.workspace.preloadFileSize": "預載入時跳過大小大於該值(KB)的檔案。",
"config.workspace.supportScheme": "為以下 `scheme` 的lua檔案提供語言伺服。",
"config.workspace.useGitIgnore": "忽略 `.gitignore` 中列舉的檔案。",
"config.workspace.userThirdParty": "在這裡添加私有的第三方庫適應檔案路徑,請參考內建的[組態檔案路徑](https://github.com/LuaLS/lua-language-server/tree/master/meta/3rd)"
}