diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2022-06-24 16:49:17 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2022-06-24 16:49:17 +0800 |
commit | 829e0da21315c1dda2f2e23a1754109788a6635a (patch) | |
tree | c0fa6d7f9b94bc80db4252846becdc49c45e6277 /locale/en-us/script.lua | |
parent | 574136216e1cbfe5836bc3136fdc66c250e7be07 (diff) | |
download | lua-language-server-829e0da21315c1dda2f2e23a1754109788a6635a.zip |
update locale
Diffstat (limited to 'locale/en-us/script.lua')
-rw-r--r-- | locale/en-us/script.lua | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/locale/en-us/script.lua b/locale/en-us/script.lua index 56a11d52..0eaf7471 100644 --- a/locale/en-us/script.lua +++ b/locale/en-us/script.lua @@ -116,6 +116,18 @@ DIAG_UNDEFINED_DOC_PARAM = 'Undefined param `{}`.' DIAG_UNKNOWN_DIAG_CODE = 'Unknown diagnostic code `{}`.' +DIAG_CAST_LOCAL_TYPE = +'This variable has explicitly defined as `{def}`. Cannot convert its type to `{ref}`.' +DIAG_CAST_FIELD_TYPE = +'This field has explicitly defined as `{def}`. Cannot convert its type to `{ref}`.' +DIAG_ASSIGN_TYPE_MISMATCH = +'Cannot assign `{ref}` to `{def}`.' +DIAG_PARAM_TYPE_MISMATCH = +'Cannot assign `{ref}` to parameter `{def}`.' +DIAG_UNKNOWN_CAST_VARIABLE = +'Unknown type conversion variable `{}`.' +DIAG_CAST_TYPE_MISMATCH = +'Cannot convert `{ref}` to `{def}`。' MWS_NOT_SUPPORT = '{} does not support multi workspace for now, I may need to restart to support the new workspace ...' |