diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-09-06 17:23:15 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-09-06 17:23:15 +0800 |
commit | b54172d818b88c41cfdc2c88f00e9caec1dea202 (patch) | |
tree | 7ccedfbe139f958e977e991d187a615099a42524 /locale/en-us | |
parent | 7047393031801c91c8d0cf78a77c91e5a6f64114 (diff) | |
download | lua-language-server-b54172d818b88c41cfdc2c88f00e9caec1dea202.zip |
fix #1526
Diffstat (limited to 'locale/en-us')
-rw-r--r-- | locale/en-us/script.lua | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/locale/en-us/script.lua b/locale/en-us/script.lua index 9135644b..ca17cdf0 100644 --- a/locale/en-us/script.lua +++ b/locale/en-us/script.lua @@ -271,6 +271,8 @@ PARSER_UNKNOWN_ATTRIBUTE = 'Local attribute should be `const` or `close`' 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! +'Need to add a pair of parentheses.' PARSER_LUADOC_MISS_CLASS_NAME = '<class name> expected.' PARSER_LUADOC_MISS_EXTENDS_SYMBOL = @@ -416,6 +418,8 @@ ACTION_MARK_ASYNC = 'Mark current function as async.' ACTION_ADD_DICT = 'Add \'{}\' to workspace dict' +ACTION_FIX_ADD_PAREN = -- TODO: need translate! +'Add parentheses.' COMMAND_DISABLE_DIAG = 'Disable diagnostics' |