diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-01-16 18:58:33 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-01-16 18:58:33 +0800 |
commit | 7f3ed1f3b74c0b651ce2aae6a8a345c069db5d06 (patch) | |
tree | 2e073b747d99b2c94b83d16cb7dec5a0b1359c74 /locale/pt-br | |
parent | be4dcc0fb3ad331a882f57f20e90bbca30770323 (diff) | |
download | lua-language-server-7f3ed1f3b74c0b651ce2aae6a8a345c069db5d06.zip |
Nesting of `[[...]]` is not allowed in Lua 5.1 .
fix #1805
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 6549de99..a221dffe 100644 --- a/locale/pt-br/script.lua +++ b/locale/pt-br/script.lua @@ -279,6 +279,8 @@ PARSER_AMBIGUOUS_SYNTAX = -- TODO: need translate! 'In Lua 5.1, the left brackets called by the function must be in the same line as the function.' PARSER_NEED_PAREN = -- TODO: need translate! '需要添加一对括号。' +PARSER_NESTING_LONG_MARK = -- TODO: need translate! +'Nesting of `[[...]]` is not allowed in Lua 5.1 .' PARSER_LUADOC_MISS_CLASS_NAME = 'Esperado <class name>.' PARSER_LUADOC_MISS_EXTENDS_SYMBOL = |