diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-06-08 19:21:55 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-06-08 19:21:55 +0800 |
commit | c6e028f7eba7933bf1b6146284446dd9619da00f (patch) | |
tree | f7f512b66cb560c41f196d008600289d5ac97ec8 /locale/pt-br | |
parent | f9310f9ca75c0e75a382b6b3806e5273350bab31 (diff) | |
download | lua-language-server-c6e028f7eba7933bf1b6146284446dd9619da00f.zip |
update locale
Diffstat (limited to 'locale/pt-br')
-rw-r--r-- | locale/pt-br/script.lua | 4 | ||||
-rw-r--r-- | locale/pt-br/setting.lua | 12 |
2 files changed, 13 insertions, 3 deletions
diff --git a/locale/pt-br/script.lua b/locale/pt-br/script.lua index a5342e1f..7dd54773 100644 --- a/locale/pt-br/script.lua +++ b/locale/pt-br/script.lua @@ -384,6 +384,8 @@ ACTION_DISABLE_DIAG_FILE= 'Desativa diagnósticos nesta linha ({}).' ACTION_MARK_ASYNC = -- TODO: need translate! 'Mark current function as async.' +ACTION_ADD_DICT = -- TODO: need translate! +'Add \'{}\' to workspace dict' COMMAND_DISABLE_DIAG = 'Desativar diagnósticos.' @@ -403,6 +405,8 @@ COMMAND_JSON_TO_LUA = 'Converte de JSON para Lua.' COMMAND_JSON_TO_LUA_FAILED = 'Converção de JSON para Lua falhou: {}.' +COMMAND_ADD_DICT = -- TODO: need translate! +'Add Word to dictionary' COMPLETION_IMPORT_FROM = 'Importa de {}.' diff --git a/locale/pt-br/setting.lua b/locale/pt-br/setting.lua index 443539be..9605f09b 100644 --- a/locale/pt-br/setting.lua +++ b/locale/pt-br/setting.lua @@ -56,13 +56,19 @@ config.diagnostics.workspaceRate = -- TODO: need translate! "Workspace diagnostics run rate (%). Decreasing this value reduces CPU usage, but also reduces the speed of workspace diagnostics. The diagnosis of the file you are currently editing is always done at full speed and is not affected by this setting." config.diagnostics.libraryFiles = -- TODO: need translate! "How to diagnose files loaded via `Lua.workspace.library`." +config.diagnostics.libraryFiles.Enable = -- TODO: need translate! +"Always diagnose these files." +config.diagnostics.libraryFiles.Opened = -- TODO: need translate! +"Only when these files are opened will it be diagnosed." +config.diagnostics.libraryFiles.Disable = -- TODO: need translate! +"These files are not diagnosed." config.diagnostics.ignoredFiles = -- TODO: need translate! "How to diagnose ignored files." -config.diagnostics.files.Enable = -- TODO: need translate! +config.diagnostics.ignoredFiles.Enable = -- TODO: need translate! "Always diagnose these files." -config.diagnostics.files.Opened = -- TODO: need translate! +config.diagnostics.ignoredFiles.Opened = -- TODO: need translate! "Only when these files are opened will it be diagnosed." -config.diagnostics.files.Disable = -- TODO: need translate! +config.diagnostics.ignoredFiles.Disable = -- TODO: need translate! "These files are not diagnosed." config.diagnostics.disableScheme = -- TODO: need translate! 'Do not diagnose Lua files that use the following scheme.' |