diff options
author | 最萌小汐 <sumneko@hotmail.com> | 2019-10-08 17:00:00 +0800 |
---|---|---|
committer | 最萌小汐 <sumneko@hotmail.com> | 2019-10-08 17:00:00 +0800 |
commit | df4d6e386c994624328f992b655a4923b710f56b (patch) | |
tree | e27c0e6f5649c293f9235f601b5e2374aebe4675 | |
parent | b1728967322435e287a97ec9fcaa19bdd368a9fe (diff) | |
download | lua-language-server-df4d6e386c994624328f992b655a4923b710f56b.zip |
一些漏掉的翻译
-rw-r--r-- | server/locale/zh-CN/libs/@lua/math.lni | 2 | ||||
-rw-r--r-- | server/locale/zh-CN/libs/@lua/utf8.lni | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/server/locale/zh-CN/libs/@lua/math.lni b/server/locale/zh-CN/libs/@lua/math.lni index fba72360..09801736 100644 --- a/server/locale/zh-CN/libs/@lua/math.lni +++ b/server/locale/zh-CN/libs/@lua/math.lni @@ -93,7 +93,7 @@ description = '把 `x` 设为伪随机数发生器的“种子”: 相同的 description = [[ * `math.randomseed(x, y)`: 将 `x` 与 `y` 连接为128位的种子来重新初始化伪随机生成器。 * `math.randomseed(x)`: 等同于 `math.randomseed(x, 0)` 。 -* `math.randomseed()`: Generates a seed with a weak attempt for randomness. +* `math.randomseed()`: Generates a seed with a weak attempt for randomness.(不会翻) ]] [sin] diff --git a/server/locale/zh-CN/libs/@lua/utf8.lni b/server/locale/zh-CN/libs/@lua/utf8.lni index 0af45153..56e9bb06 100644 --- a/server/locale/zh-CN/libs/@lua/utf8.lni +++ b/server/locale/zh-CN/libs/@lua/utf8.lni @@ -14,11 +14,27 @@ end ``` ]] +["codes Lua 5.4"] +description = [[ +-------- +```lua +for p, c in utf8.codes(s) do + body +end +``` +]] + [codepoint] description = '以整数形式返回 `s` 中 从位置 `i` 到 `j` 间(包括两端) 所有字符的编号。' +["codepoint Lua 5.4"] +description = '以整数形式返回 `s` 中 从位置 `i` 到 `j` 间(包括两端) 所有字符的编号。' + [len] description = '返回字符串 `s` 中 从位置 `i` 到 `j` 间 (包括两端) UTF-8 字符的个数。' +["len Lua 5.4"] +description = '返回字符串 `s` 中 从位置 `i` 到 `j` 间 (包括两端) UTF-8 字符的个数。' + [offset] description = '返回编码在 `s` 中的第 `n` 个字符的开始位置(按字节数) (从位置 `i` 处开始统计)。' |