diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2021-01-28 19:57:00 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2021-01-28 19:57:00 +0800 |
commit | 0c083272ea34af6705ad838d013fe2a3a85234a2 (patch) | |
tree | fd0386264e83263d99f343d72e67515d9b046a77 /script/workspace | |
parent | 457b73fd22d8ed34301a6a606636d3003735b4dc (diff) | |
download | lua-language-server-0c083272ea34af6705ad838d013fe2a3a85234a2.zip |
update locale
Diffstat (limited to 'script/workspace')
-rw-r--r-- | script/workspace/workspace.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/script/workspace/workspace.lua b/script/workspace/workspace.lua index 90db1f0c..368add6b 100644 --- a/script/workspace/workspace.lua +++ b/script/workspace/workspace.lua @@ -185,17 +185,17 @@ local function loadFileFactory(root, progressData, isLibrary) message = lang.script('MWS_MAX_PRELOAD', config.config.workspace.maxPreload), actions = { { - title = '增加上限', + title = lang.script.WINDOW_INCREASE_UPPER_LIMIT, }, { - title = '关闭', + title = lang.script.WINDOW_CLOSE, } } }) if not item then return end - if item.title == '增加上限' then + if item.title == lang.script.WINDOW_INCREASE_UPPER_LIMIT then proto.notify('$/command', { command = 'lua.config', data = { |