diff options
-rw-r--r-- | locale/en-us/script.lua | 2 | ||||
-rw-r--r-- | locale/pt-br/script.lua | 2 | ||||
-rw-r--r-- | locale/zh-cn/script.lua | 2 | ||||
-rw-r--r-- | locale/zh-tw/script.lua | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/locale/en-us/script.lua b/locale/en-us/script.lua index 191a4cfb..4b74fa51 100644 --- a/locale/en-us/script.lua +++ b/locale/en-us/script.lua @@ -281,6 +281,8 @@ PARSER_NEED_PAREN = -- TODO: need translate! 'Need to add a pair of parentheses.' PARSER_NESTING_LONG_MARK = 'Nesting of `[[...]]` is not allowed in Lua 5.1 .' +PARSER_LOCAL_LIMIT = +'Only 200 active local variables and upvalues can be existed at the same time.' PARSER_LUADOC_MISS_CLASS_NAME = '<class name> expected.' PARSER_LUADOC_MISS_EXTENDS_SYMBOL = diff --git a/locale/pt-br/script.lua b/locale/pt-br/script.lua index 2a9fcdb9..d2a7c314 100644 --- a/locale/pt-br/script.lua +++ b/locale/pt-br/script.lua @@ -281,6 +281,8 @@ PARSER_NEED_PAREN = -- TODO: need translate! '需要添加一对括号。' PARSER_NESTING_LONG_MARK = -- TODO: need translate! 'Nesting of `[[...]]` is not allowed in Lua 5.1 .' +PARSER_LOCAL_LIMIT = -- TODO: need translate! +'Only 200 active local variables and upvalues can be existed at the same time.' PARSER_LUADOC_MISS_CLASS_NAME = 'Esperado <class name>.' PARSER_LUADOC_MISS_EXTENDS_SYMBOL = diff --git a/locale/zh-cn/script.lua b/locale/zh-cn/script.lua index c365cecb..531b54ae 100644 --- a/locale/zh-cn/script.lua +++ b/locale/zh-cn/script.lua @@ -281,6 +281,8 @@ PARSER_NEED_PAREN = '需要添加一对括号。' PARSER_NESTING_LONG_MARK = 'Lua 5.1 中不允许使用嵌套的 `[[...]]` 。' +PARSER_LOCAL_LIMIT = +'只能同时存在200个活跃的局部变量与上值。' PARSER_LUADOC_MISS_CLASS_NAME = '缺少类名称。' PARSER_LUADOC_MISS_EXTENDS_SYMBOL = diff --git a/locale/zh-tw/script.lua b/locale/zh-tw/script.lua index dcbfce88..d6e93a43 100644 --- a/locale/zh-tw/script.lua +++ b/locale/zh-tw/script.lua @@ -281,6 +281,8 @@ PARSER_NEED_PAREN = -- TODO: need translate! '需要添加一对括号。' PARSER_NESTING_LONG_MARK = -- TODO: need translate! 'Nesting of `[[...]]` is not allowed in Lua 5.1 .' +PARSER_LOCAL_LIMIT = -- TODO: need translate! +'Only 200 active local variables and upvalues can be existed at the same time.' PARSER_LUADOC_MISS_CLASS_NAME = '缺少類別名稱。' PARSER_LUADOC_MISS_EXTENDS_SYMBOL = |