summaryrefslogtreecommitdiff
path: root/package.nls.json
diff options
context:
space:
mode:
author最萌小汐 <sumneko@hotmail.com>2019-06-24 18:04:40 +0800
committer最萌小汐 <sumneko@hotmail.com>2019-06-24 18:04:40 +0800
commit42ef1ad45f7afcca6657b8ad94de4ad460b636af (patch)
tree0601c9705b032d13b7efd8abbc9d65ec0e715c5e /package.nls.json
parent2d242061f9ff6e9be0d6800fc9f542b3078844df (diff)
downloadlua-language-server-42ef1ad45f7afcca6657b8ad94de4ad460b636af.zip
总之随便翻译一下
Diffstat (limited to 'package.nls.json')
-rw-r--r--package.nls.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.nls.json b/package.nls.json
index 81fe0500..d3cc2102 100644
--- a/package.nls.json
+++ b/package.nls.json
@@ -6,7 +6,7 @@
"config.runtime.version": "Lua runtime version.",
"config.workspace.ignoreDir": "Ignored directories (Use `.gitignore` grammar).\n```json\n\"Lua.workspace.ignoreDir\" : [\n \"temp/*.*\",\n \"!temp/*.lua\"\n]\n```\n",
"config.workspace.ignoreSubmodules": "Ignore submodules.",
- "config.workspace.library": "加载的外部函数库。\n下面这个例子表示加载`C:/lua`中的所有文件,以及加载`../lib`中的`.txt`与`.lua`文件,但不加载`../lib/temp`中的`.txt`文件。\n```json\n\"Lua.workspace.library\": {\n \"C:/lua\": true,\n \"../lib\": [\n \"*.txt\",\n \"*.lua\",\n \"!/temp/**/*.txt\"\n ]\n}\n```\n",
+ "config.workspace.library": "(Plz help me to translate these into nice English!)\nLoad external library.\nThis feature can load external Lua files, which can be used for definition, automatic completion and other functions. Note that the language server does not monitor changes in external files and needs to restart if the external files are modified.\nThe following example shows loaded files in `C:/lua` without `../lib/temp`.\n```json\n\"Lua.workspace.library\": {\n \"C:/lua\": true,\n \"../lib\": [\n \"temp/*\"\n ]\n}\n```\n",
"config.workspace.maxPreload": "Max preloaded files.",
"config.workspace.preloadFileSize": "Skip files larger than this value (KB) when preloading.",
"config.workspace.useGitIgnore": "Ignore files list in `.gitignore` ."