diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2023-01-30 18:02:31 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2023-01-30 18:02:31 +0800 |
commit | 4a9ab5b1ae9889e9732b53ad8cdf3b6db5394c3b (patch) | |
tree | 935934fdb69c1e94209e79827474b7a145c28b7b /locale | |
parent | bb3f84633b01afb0a2f719645f8176f491fb7694 (diff) | |
download | lua-language-server-4a9ab5b1ae9889e9732b53ad8cdf3b6db5394c3b.zip |
command `lua.exportDocument`
finish #1833
Diffstat (limited to 'locale')
-rw-r--r-- | locale/en-us/script.lua | 8 | ||||
-rw-r--r-- | locale/pt-br/script.lua | 8 | ||||
-rw-r--r-- | locale/zh-cn/script.lua | 8 | ||||
-rw-r--r-- | locale/zh-tw/script.lua | 8 |
4 files changed, 32 insertions, 0 deletions
diff --git a/locale/en-us/script.lua b/locale/en-us/script.lua index 9910aa90..2937d80a 100644 --- a/locale/en-us/script.lua +++ b/locale/en-us/script.lua @@ -602,6 +602,14 @@ CLI_CHECK_SUCCESS = 'Diagnosis completed, no problems found' CLI_CHECK_RESULTS = 'Diagnosis complete, {} problems found, see {}' +CLI_DOC_INITING = +'Loading documents ...' +CLI_DOC_DONE = +[[ +Document exporting completed! +Raw data: {} +Markdown(example): {} +]] TYPE_ERROR_ENUM_GLOBAL_DISMATCH = 'Type `{child}` cannot match enumeration type of `{parent}`' diff --git a/locale/pt-br/script.lua b/locale/pt-br/script.lua index a221dffe..fd25a3d6 100644 --- a/locale/pt-br/script.lua +++ b/locale/pt-br/script.lua @@ -602,6 +602,14 @@ CLI_CHECK_SUCCESS = 'Diagnóstico completo, nenhum problema encontrado' CLI_CHECK_RESULTS = 'Diagnóstico completo, {} problemas encontrados, veja {}' +CLI_DOC_INITING = -- TODO: need translate! +'Loading documents ...' +CLI_DOC_DONE = -- TODO: need translate! +[[ +Document exporting completed! +Raw data: {} +Markdown(example): {} +]] TYPE_ERROR_ENUM_GLOBAL_DISMATCH = -- TODO: need translate! 'Type `{child}` cannot match enumeration type of `{parent}`' diff --git a/locale/zh-cn/script.lua b/locale/zh-cn/script.lua index 92019b02..114546dd 100644 --- a/locale/zh-cn/script.lua +++ b/locale/zh-cn/script.lua @@ -602,6 +602,14 @@ CLI_CHECK_SUCCESS = '诊断完成,没有发现问题' CLI_CHECK_RESULTS = '诊断完成,共有 {} 个问题,请查看 {}' +CLI_DOC_INITING = +'加载文档 ...' +CLI_DOC_DONE = +[[ +文档导出完成! +原始数据: {} +Markdown(演示用): {} +]] TYPE_ERROR_ENUM_GLOBAL_DISMATCH = '类型 `{child}` 无法匹配 `{parent}` 的枚举类型' diff --git a/locale/zh-tw/script.lua b/locale/zh-tw/script.lua index 13c50a8d..d738700e 100644 --- a/locale/zh-tw/script.lua +++ b/locale/zh-tw/script.lua @@ -602,6 +602,14 @@ CLI_CHECK_SUCCESS = '診斷完成,沒有發現問題' CLI_CHECK_RESULTS = '診斷完成,共有 {} 個問題,請查看 {}' +CLI_DOC_INITING = -- TODO: need translate! +'Loading documents ...' +CLI_DOC_DONE = -- TODO: need translate! +[[ +Document exporting completed! +Raw data: {} +Markdown(example): {} +]] TYPE_ERROR_ENUM_GLOBAL_DISMATCH = -- TODO: need translate! 'Type `{child}` cannot match enumeration type of `{parent}`' |