diff options
author | Martin Armbruster <martin.armbruster@sick.de> | 2022-12-06 13:26:38 +0100 |
---|---|---|
committer | Martin Armbruster <martin.armbruster@sick.de> | 2022-12-06 13:26:38 +0100 |
commit | 32ed8bb428f82708eadd4a9ae3e2c0ce98696add (patch) | |
tree | d871e1b8086860fad6b2c69668d25f5708d32710 /locale/pt-br/setting.lua | |
parent | 3dcbab2103ebb66fb4bd95c91a49f03f0f449421 (diff) | |
download | lua-language-server-32ed8bb428f82708eadd4a9ae3e2c0ce98696add.zip |
Added descriptions for the invisible diagnostics and the typeFormat configuration.
Diffstat (limited to 'locale/pt-br/setting.lua')
-rw-r--r-- | locale/pt-br/setting.lua | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/locale/pt-br/setting.lua b/locale/pt-br/setting.lua index 8770548f..efc936e2 100644 --- a/locale/pt-br/setting.lua +++ b/locale/pt-br/setting.lua @@ -369,6 +369,8 @@ config.diagnostics['duplicate-doc-param'] = -- TODO: need translate! 'Enable diagnostics for a duplicated param annotation name.' config.diagnostics['duplicate-set-field'] = -- TODO: need translate! 'Enable diagnostics for setting the same field in a class more than once.' +config.diagnostics['invisible'] = -- TODO: need translate! +'Enable diagnostics for accesses to fields which are invisible.' config.diagnostics['missing-parameter'] = -- TODO: need translate! 'Enable diagnostics for function calls where the number of arguments is less than the number of annotated function parameters.' config.diagnostics['missing-return'] = -- TODO: need translate! @@ -409,3 +411,11 @@ config.diagnostics['unknown-operator'] = -- TODO: need translate! 'Enable diagnostics for unknown operators.' config.diagnostics['unreachable-code'] = -- TODO: need translate! 'Enable diagnostics for unreachable code.' +config.typeFormat.config = -- TODO: need translate! +'Configures the formatting behavior while typing Lua code.' +config.typeFormat.config.auto_complete_end = -- TODO: need translate! +'Controls if `end` is automatically completed at suitable positions.' +config.typeFormat.config.auto_complete_table_sep = -- TODO: need translate! +'Controls if a separator is automatically appended at the end of a table declaration.' +config.typeFormat.config.format_line = -- TODO: need translate! +'Controls if a line is formatted at all.' |