You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Read [formatter docs](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs) to learn usage.
287
+
]]
283
288
config.telemetry.enable=
284
289
[[
285
290
Enable telemetry to send your editor information and error logs over the network. Read our privacy policy [here](https://luals.github.io/privacy/#language-server).
@@ -289,7 +294,7 @@ config.misc.parameters =
289
294
config.misc.executablePath=
290
295
'Specify the executable path in VSCode.'
291
296
config.language.fixIndent=
292
-
'(VSCode only) Fix incorrect auto-indentation, such as incorrect indentation when line breaks occur within a string containing the word "function."'
297
+
'(VSCode only) Fix incorrect auto-indentation, such as incorrect indentation when line breaks occur within a string containing the word "function".'
293
298
config.language.completeAnnotation=
294
299
'(VSCode only) Automatically insert "---@ " after a line break following a annotation.'
'Maximum number of table fields analyzed during type inference.'
319
326
config.doc.privateName=
320
327
'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.'
321
328
config.doc.protectedName=
322
329
'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.'
323
330
config.doc.packageName=
324
331
'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.'
332
+
config.doc.regengine=
333
+
'The regular expression engine used for matching documentation scope names.'
334
+
config.doc.regengine.glob=
335
+
'The default lightweight pattern syntax.'
336
+
config.doc.regengine.lua=
337
+
'Full Lua-style regular expressions.'
338
+
config.docScriptPath=
339
+
'The regular expression engine used for matching documentation scope names.'
'Enable newline call diagnostics. Is\'s raised when a line starting with `(` is encountered, which is syntactically parsed as a function call on the previous line.'
357
+
'Enable newline call diagnostics. It\'s raised when a line starting with `(` is encountered, which is syntactically parsed as a function call on the previous line.'
343
358
config.diagnostics['newfield-call'] =
344
359
'Enable newfield call diagnostics. It is raised when the parenthesis of a function call appear on the following line when defining a field in a table.'
"Especifica la rama de git usada por el manejador de extensiones."
7
7
config.addonManager.repositoryPath=
8
8
"Especifica la ruta git usada por el manejador de extensiones."
9
+
config.addonRepositoryPath=-- TODO: need translate!
10
+
"Specifies the addon repository path (not related to the addon manager)."
9
11
10
12
config.runtime.version=
11
13
"Versión de Lua que se ejecuta."
@@ -280,7 +282,11 @@ para aprender más sobre su uso.
280
282
config.spell.dict=
281
283
'Palabras extra para el corrector ortográfico.'
282
284
config.nameStyle.config=
283
-
'Configuración de estilo para nombres.'
285
+
[[
286
+
Configuración de estilo para nombres.
287
+
Revise [la documentación del formateador](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs)
288
+
para aprender más sobre su uso.
289
+
]]
284
290
config.telemetry.enable=
285
291
[[
286
292
Habilita la telemetría para enviar información del editor y registros de errores por la red. Lea nuestra política de privacidad [aquí (en inglés)](https://luals.github.io/privacy#language-server).
config.type.inferTableSize=-- TODO: need translate!
327
+
'Maximum number of table fields analyzed during type inference.'
320
328
config.doc.privateName=
321
329
'Trata los nombres específicos de campo como privados. Por ejemplo `m_*` significa `XXX.m_id` y `XXX.m_tipo` son privados, por lo que solo pueden ser accedidos donde se define la clase.'
322
330
config.doc.protectedName=
323
331
'Trata los nombres específicos de campo como protegidos. Por ejemplo `m_*` significa `XXX.m_id` y `XXX.m_tipo` son privados, por lo que solo pueden ser accedidos donde se define la clase y sus subclases.'
324
332
config.doc.packageName=
325
333
'Trata los nombres específicos de campo como del paquete. Por ejemplo `m_*` significa `XXX.m_id` y `XXX.m_tipo` son de paquete, por lo que solo pueden ser accedidos en el archivo donde son definidos.'
334
+
config.doc.regengine=-- TODO: need translate!
335
+
'The regular expression engine used for matching documentation scope names.'
336
+
config.doc.regengine.glob=-- TODO: need translate!
337
+
'The default lightweight pattern syntax.'
338
+
config.doc.regengine.lua=-- TODO: need translate!
339
+
'Full Lua-style regular expressions.'
340
+
config.docScriptPath=-- TODO: need translate!
341
+
'The regular expression engine used for matching documentation scope names.'
326
342
config.diagnostics['unused-local'] =
327
343
'Habilita el diagnóstico de variables local sin uso.'
Read [formatter docs](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs) to learn usage.
287
+
]]
283
288
config.telemetry.enable=-- TODO: need translate!
284
289
[[
285
290
Enable telemetry to send your editor information and error logs over the network. Read our privacy policy [here](https://luals.github.io/privacy/#language-server).
@@ -316,12 +321,22 @@ config.type.checkTableShape = -- TODO: need translate!
316
321
[[
317
322
Strictly check the shape of the table.
318
323
]]
324
+
config.type.inferTableSize=-- TODO: need translate!
325
+
'Maximum number of table fields analyzed during type inference.'
319
326
config.doc.privateName=-- TODO: need translate!
320
327
'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.'
321
328
config.doc.protectedName=-- TODO: need translate!
322
329
'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.'
323
330
config.doc.packageName=-- TODO: need translate!
324
331
'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.'
332
+
config.doc.regengine=-- TODO: need translate!
333
+
'The regular expression engine used for matching documentation scope names.'
334
+
config.doc.regengine.glob=-- TODO: need translate!
335
+
'The default lightweight pattern syntax.'
336
+
config.doc.regengine.lua=-- TODO: need translate!
337
+
'Full Lua-style regular expressions.'
338
+
config.docScriptPath=-- TODO: need translate!
339
+
'The regular expression engine used for matching documentation scope names.'
325
340
config.diagnostics['unused-local'] =-- TODO: need translate!
326
341
'Enable unused local variable diagnostics.'
327
342
config.diagnostics['unused-function'] =-- TODO: need translate!
Read [formatter docs](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs) to learn usage.
287
+
]]
283
288
config.telemetry.enable=-- TODO: need translate!
284
289
[[
285
290
Enable telemetry to send your editor information and error logs over the network. Read our privacy policy [here](https://luals.github.io/privacy/#language-server).
@@ -316,12 +321,22 @@ config.type.checkTableShape = -- TODO: need translate!
316
321
[[
317
322
对表的形状进行严格检查。
318
323
]]
324
+
config.type.inferTableSize=-- TODO: need translate!
325
+
'Maximum number of table fields analyzed during type inference.'
319
326
config.doc.privateName=-- TODO: need translate!
320
327
'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.'
321
328
config.doc.protectedName=-- TODO: need translate!
322
329
'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.'
323
330
config.doc.packageName=-- TODO: need translate!
324
331
'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.'
332
+
config.doc.regengine=-- TODO: need translate!
333
+
'The regular expression engine used for matching documentation scope names.'
334
+
config.doc.regengine.glob=-- TODO: need translate!
335
+
'The default lightweight pattern syntax.'
336
+
config.doc.regengine.lua=-- TODO: need translate!
337
+
'Full Lua-style regular expressions.'
338
+
config.docScriptPath=-- TODO: need translate!
339
+
'The regular expression engine used for matching documentation scope names.'
325
340
config.diagnostics['unused-local'] =-- TODO: need translate!
326
341
'未使用的局部变量'
327
342
config.diagnostics['unused-function'] =-- TODO: need translate!
0 commit comments