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
+
]]
285
288
config.telemetry.enable=
286
289
[[
287
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).
@@ -291,7 +294,7 @@ config.misc.parameters =
291
294
config.misc.executablePath=
292
295
'Specify the executable path in VSCode.'
293
296
config.language.fixIndent=
294
-
'(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".'
295
298
config.language.completeAnnotation=
296
299
'(VSCode only) Automatically insert "---@ " after a line break following a annotation.'
'Maximum number of table fields analyzed during type inference.'
321
326
config.doc.privateName=
322
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.'
323
328
config.doc.protectedName=
324
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.'
325
330
config.doc.packageName=
326
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.'
345
358
config.diagnostics['newfield-call'] =
346
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.'
Copy file name to clipboardExpand all lines: locale/es-419/setting.lua
+15-1Lines changed: 15 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -282,7 +282,11 @@ para aprender más sobre su uso.
282
282
config.spell.dict=
283
283
'Palabras extra para el corrector ortográfico.'
284
284
config.nameStyle.config=
285
-
'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
+
]]
286
290
config.telemetry.enable=
287
291
[[
288
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.'
322
328
config.doc.privateName=
323
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.'
324
330
config.doc.protectedName=
325
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.'
326
332
config.doc.packageName=
327
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.'
328
342
config.diagnostics['unused-local'] =
329
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
+
]]
285
288
config.telemetry.enable=-- TODO: need translate!
286
289
[[
287
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).
@@ -318,12 +321,22 @@ config.type.checkTableShape = -- TODO: need translate!
318
321
[[
319
322
Strictly check the shape of the table.
320
323
]]
324
+
config.type.inferTableSize=-- TODO: need translate!
325
+
'Maximum number of table fields analyzed during type inference.'
321
326
config.doc.privateName=-- TODO: need translate!
322
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.'
323
328
config.doc.protectedName=-- TODO: need translate!
324
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.'
325
330
config.doc.packageName=-- TODO: need translate!
326
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.'
327
340
config.diagnostics['unused-local'] =-- TODO: need translate!
328
341
'Enable unused local variable diagnostics.'
329
342
config.diagnostics['unused-function'] =-- TODO: need translate!
Read [formatter docs](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs) to learn usage.
287
+
]]
285
288
config.telemetry.enable=-- TODO: need translate!
286
289
[[
287
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).
@@ -318,12 +321,22 @@ config.type.checkTableShape = -- TODO: need translate!
318
321
[[
319
322
对表的形状进行严格检查。
320
323
]]
324
+
config.type.inferTableSize=-- TODO: need translate!
325
+
'Maximum number of table fields analyzed during type inference.'
321
326
config.doc.privateName=-- TODO: need translate!
322
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.'
323
328
config.doc.protectedName=-- TODO: need translate!
324
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.'
325
330
config.doc.packageName=-- TODO: need translate!
326
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.'
327
340
config.diagnostics['unused-local'] =-- TODO: need translate!
328
341
'未使用的局部变量'
329
342
config.diagnostics['unused-function'] =-- TODO: need translate!
@@ -316,12 +319,22 @@ config.type.checkTableShape = -- TODO: need translate!
316
319
[[
317
320
对表的形状进行严格检查。
318
321
]]
322
+
config.type.inferTableSize=-- TODO: need translate!
323
+
'Maximum number of table fields analyzed during type inference.'
319
324
config.doc.privateName=-- TODO: need translate!
320
325
'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
326
config.doc.protectedName=-- TODO: need translate!
322
327
'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
328
config.doc.packageName=-- TODO: need translate!
324
329
'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.'
330
+
config.doc.regengine=-- TODO: need translate!
331
+
'The regular expression engine used for matching documentation scope names.'
332
+
config.doc.regengine.glob=-- TODO: need translate!
333
+
'The default lightweight pattern syntax.'
334
+
config.doc.regengine.lua=-- TODO: need translate!
335
+
'Full Lua-style regular expressions.'
336
+
config.docScriptPath=-- TODO: need translate!
337
+
'The regular expression engine used for matching documentation scope names.'
0 commit comments