summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--server/locale/zh-CN/libs/@lua/math.lni2
-rw-r--r--server/locale/zh-CN/libs/@lua/utf8.lni16
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` 处开始统计)。'