summaryrefslogtreecommitdiff
path: root/locale/zh-tw/script.lua
diff options
context:
space:
mode:
authorAndreaWalchshoferSCCH <122894794+AndreaWalchshoferSCCH@users.noreply.github.com>2023-04-04 11:02:59 +0200
committerGitHub <noreply@github.com>2023-04-04 11:02:59 +0200
commit27cfa2e23648b015a94fab6e0938ec42a5a040e5 (patch)
treee247b1aac92882c72e5c694eb8090f883d43c76c /locale/zh-tw/script.lua
parentf85e039b9e9369fc2936e899c81056837f04403e (diff)
downloadlua-language-server-27cfa2e23648b015a94fab6e0938ec42a5a040e5.zip
Add diagnostic to enforce lowercase local element names (#6)
- diagnostic `uppercase-local` in group `conventions`, disabled by default - isolated unit tests for diagnostic
Diffstat (limited to 'locale/zh-tw/script.lua')
-rw-r--r--locale/zh-tw/script.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/locale/zh-tw/script.lua b/locale/zh-tw/script.lua
index 4d9a89ad..77ff6fea 100644
--- a/locale/zh-tw/script.lua
+++ b/locale/zh-tw/script.lua
@@ -150,8 +150,10 @@ DIAG_INVISIBLE_PROTECTED = -- TODO: need translate!
'Field `{field}` is protected, it can only be accessed in class `{class}` and its subclasses.'
DIAG_INVISIBLE_PACKAGE = -- TODO: need translate!
'Field `{field}` can only be accessed in same file `{uri}`.'
-DIAG_GLOBAL_ELEMENT = -- TODO: need translate!
+DIAG_GLOBAL_ELEMENT = -- TODO: need translate!
'Element is global.'
+DIAG_UPPERCASE_LOCAL = -- TODO: need translate!
+'Local element `{}` must start with lowercase letter'
MWS_NOT_SUPPORT =
'{} 目前還不支援多工作目錄,我可能需要重新啟動才能支援新的工作目錄...'