diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-04-22 03:18:35 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-04-22 03:18:35 +0800 |
commit | 7881d1a3d91b59d2dd8c28a72453e0e6c44a902f (patch) | |
tree | 6c2466f3676d813ac9db469815f4af9834d1711a /locale/pt-br | |
parent | b85ff57a116fb252a0da35e525264e0940af88c7 (diff) | |
download | lua-language-server-7881d1a3d91b59d2dd8c28a72453e0e6c44a902f.zip |
new diagnostic `missing-parameter`
Diffstat (limited to 'locale/pt-br')
-rw-r--r-- | locale/pt-br/script.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/locale/pt-br/script.lua b/locale/pt-br/script.lua index 4076c223..a62fefad 100644 --- a/locale/pt-br/script.lua +++ b/locale/pt-br/script.lua @@ -34,6 +34,8 @@ DIAG_PREFIELD_CALL = 'Será interpretado como `{}{}`. Pode ser necessário adicionar uma `,` ou `;`.' DIAG_OVER_MAX_ARGS = 'A função aceita apenas os parâmetros {:d}, mas você passou {:d}.' +DIAG_MISS_ARGS = -- TODO: need translate! +'the function received at least {:d} arguments, but got {:d}.' DIAG_OVER_MAX_VALUES = -- TODO: need translate! 'Only has {} variables, but you set {} values.' DIAG_AMBIGUITY_1 = |