diff options
Diffstat (limited to 'script/workspace/workspace.lua')
-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 = { |