summaryrefslogtreecommitdiff
path: root/locale/en-us/script.lua
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2021-03-15 18:03:34 +0800
committer最萌小汐 <sumneko@hotmail.com>2021-03-15 18:03:34 +0800
commit2426bbe0758801ecfe4369d72f6755e9ef193cc5 (patch)
tree28fd3385b767b6eea451b1cbc95bce624ce9a879 /locale/en-us/script.lua
parent4e68872ea96a53f9c7ad5e11c83794b92f477fb4 (diff)
downloadlua-language-server-2426bbe0758801ecfe4369d72f6755e9ef193cc5.zip
diagnostic: improve `newline-call`
Diffstat (limited to 'locale/en-us/script.lua')
-rw-r--r--locale/en-us/script.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/locale/en-us/script.lua b/locale/en-us/script.lua
index f39720e2..a1ec0e17 100644
--- a/locale/en-us/script.lua
+++ b/locale/en-us/script.lua
@@ -13,8 +13,8 @@ DIAG_UNUSED_VARARG = 'Unused vararg.'
DIAG_REDEFINED_LOCAL = 'Redefined local `{}`.'
DIAG_DUPLICATE_INDEX = 'Duplicate index `{}`.'
DIAG_DUPLICATE_METHOD = 'Duplicate method `{}`.'
-DIAG_PREVIOUS_CALL = 'Parsed as function call for the previous line. It may be necessary to add a `;` before.'
-DIAG_PREFIELD_CALL = 'Parsed as `{} {}`. It may be necessary to add a `,` or `;` in the middle.'
+DIAG_PREVIOUS_CALL = 'Will be interpreted as `{}{}`. It may be necessary to add a `,`.'
+DIAG_PREFIELD_CALL = 'Will be interpreted as `{}{}`. It may be necessary to add a `,` or `;`.'
DIAG_OVER_MAX_ARGS = 'The function takes only {:d} parameters, but you passed {:d}.'
DIAG_OVER_MAX_ARGS = 'Only has {} variables, but you set {} values.'
DIAG_AMBIGUITY_1 = 'Compute `{}` first. You may need to add brackets.'