diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-06-09 17:25:27 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-06-09 17:25:27 +0800 |
commit | f8f9b68d3e89e602bcfe80fa18b2f5cb0846e846 (patch) | |
tree | a681b2dbb507a09bf5fa13b65600b9db6e263a9d /locale/pt-br | |
parent | afb4f838f65d22443ccf30089b2f898fc9c55430 (diff) | |
download | lua-language-server-f8f9b68d3e89e602bcfe80fa18b2f5cb0846e846.zip |
add locale
Diffstat (limited to 'locale/pt-br')
-rw-r--r-- | locale/pt-br/setting.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/locale/pt-br/setting.lua b/locale/pt-br/setting.lua index 9605f09b..50ec9473 100644 --- a/locale/pt-br/setting.lua +++ b/locale/pt-br/setting.lua @@ -169,6 +169,10 @@ config.hover.previewFields = -- TODO: need translate! "When hovering to view a table, limits the maximum number of previews for fields." config.hover.enumsLimit = -- TODO: need translate! "When the value corresponds to multiple types, limit the number of types displaying." +config.hover.expandAlias = -- TODO: need translate! +[[ +Whether to expand the alias. For example, expands `---@alias myType boolean|number` appears as `boolean|number`, otherwise it appears as `myType'. +]] config.develop.enable = -- TODO: need translate! 'Developer mode. Do not enable, performance will be affected.' config.develop.debuggerPort = -- TODO: need translate! @@ -205,6 +209,8 @@ config.hint.arrayIndex.Auto = -- TODO: need translate! 'Show hints only when the table is greater than 3 items, or the table is a mixed table.' config.hint.arrayIndex.Disable = -- TODO: need translate! 'Disable hints of array index.' +config.hint.await = -- TODO: need translate! +'If the called function is marked `---@async`, prompt `await` at the call.' config.format.enable = -- TODO: need translate! 'Enable code formatter.' config.telemetry.enable = -- TODO: need translate! |