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.
285
+
]]
283
286
config.telemetry.enable=
284
287
[[
285
288
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 +292,7 @@ config.misc.parameters =
289
292
config.misc.executablePath=
290
293
'Specify the executable path in VSCode.'
291
294
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."'
295
+
'(VSCode only) Fix incorrect auto-indentation, such as incorrect indentation when line breaks occur within a string containing the word "function".'
293
296
config.language.completeAnnotation=
294
297
'(VSCode only) Automatically insert "---@ " after a line break following a annotation.'
'Maximum number of table fields analyzed during type inference.'
319
324
config.doc.privateName=
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=
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=
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=
331
+
'The regular expression engine used for matching documentation scope names.'
332
+
config.doc.regengine.glob=
333
+
'The default lightweight pattern syntax.'
334
+
config.doc.regengine.lua=
335
+
'Full Lua-style regular expressions.'
336
+
config.docScriptPath=
337
+
'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.'
355
+
'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
356
config.diagnostics['newfield-call'] =
344
357
'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
@@ -280,7 +280,11 @@ para aprender más sobre su uso.
280
280
config.spell.dict=
281
281
'Palabras extra para el corrector ortográfico.'
282
282
config.nameStyle.config=
283
-
'Configuración de estilo para nombres.'
283
+
[[
284
+
Configuración de estilo para nombres.
285
+
Revise [la documentación del formateador](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs)
286
+
para aprender más sobre su uso.
287
+
]]
284
288
config.telemetry.enable=
285
289
[[
286
290
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!
325
+
'Maximum number of table fields analyzed during type inference.'
320
326
config.doc.privateName=
321
327
'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
328
config.doc.protectedName=
323
329
'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
330
config.doc.packageName=
325
331
'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.'
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.'
326
340
config.diagnostics['unused-local'] =
327
341
'Habilita el diagnóstico de variables local sin uso.'
Read [formatter docs](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs) to learn usage.
285
+
]]
283
286
config.telemetry.enable=-- TODO: need translate!
284
287
[[
285
288
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 +319,22 @@ config.type.checkTableShape = -- TODO: need translate!
316
319
[[
317
320
Strictly check the shape of the table.
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.'
325
338
config.diagnostics['unused-local'] =-- TODO: need translate!
326
339
'Enable unused local variable diagnostics.'
327
340
config.diagnostics['unused-function'] =-- TODO: need translate!
Read [formatter docs](https://github.com/CppCXY/EmmyLuaCodeStyle/tree/master/docs) to learn usage.
285
+
]]
283
286
config.telemetry.enable=-- TODO: need translate!
284
287
[[
285
288
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 +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.'
325
338
config.diagnostics['unused-local'] =-- TODO: need translate!
326
339
'未使用的局部变量'
327
340
config.diagnostics['unused-function'] =-- TODO: need translate!
@@ -314,12 +317,22 @@ config.type.checkTableShape = -- TODO: need translate!
314
317
[[
315
318
对表的形状进行严格检查。
316
319
]]
320
+
config.type.inferTableSize=-- TODO: need translate!
321
+
'Maximum number of table fields analyzed during type inference.'
317
322
config.doc.privateName=-- TODO: need translate!
318
323
'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.'
319
324
config.doc.protectedName=-- TODO: need translate!
320
325
'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.'
321
326
config.doc.packageName=-- TODO: need translate!
322
327
'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.'
328
+
config.doc.regengine=-- TODO: need translate!
329
+
'The regular expression engine used for matching documentation scope names.'
330
+
config.doc.regengine.glob=-- TODO: need translate!
331
+
'The default lightweight pattern syntax.'
332
+
config.doc.regengine.lua=-- TODO: need translate!
333
+
'Full Lua-style regular expressions.'
334
+
config.docScriptPath=-- TODO: need translate!
335
+
'The regular expression engine used for matching documentation scope names.'
0 commit comments