Archived
1
0
Fork 0
This repository has been archived on 2024-04-26. You can view files and clone it, but cannot push or open issues or pull requests.
akari-bot/modules/calc/locales/zh_cn.json
2023-06-27 01:35:53 +08:00

31 lines
No EOL
2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"calc.help.desc": "安全地计算 Python ast 表达式。",
"calc.help.option.bin": "转换为二进制bin(268) -> 0b100001100",
"calc.help.option.bool": "转换为布尔值bool(1) -> True",
"calc.help.option.complex": "转换为复数complex(1) -> (1 + 0j)",
"calc.help.option.divide": "商6 / 3 -> 2",
"calc.help.option.equal": "等于1 == 1 -> True",
"calc.help.option.float": "转换为浮点数float(1) -> 1.0",
"calc.help.option.greater_equal": "大于等于1 >= 2 -> False",
"calc.help.option.hex": "转换为十六进制hex(268) -> 0x10c",
"calc.help.option.int": "转换为整数int(1.5) -> 1",
"calc.help.option.is": "x 与 y 是同一个对象1 is 1 -> True",
"calc.help.option.less_equal": "小于等于1 <= 2 -> True",
"calc.help.option.minus": "差/负数3 - 1 -> 2",
"calc.help.option.modulo": "取模5 % 2 -> 1",
"calc.help.option.more": "更多可用运算符和函数",
"calc.help.option.move_left": "x 左移 y 位(相当于 x * (2 ** y)y < 100001 << 5 -> 32",
"calc.help.option.move_right": "x 右移 y 位(相当于 x / (2 ** y)y < 1000032 >> 5 -> 1",
"calc.help.option.multiply": "积2 * 3 -> 6",
"calc.help.option.not": "非not True -> False",
"calc.help.option.oct": "转换为八进制oct(268) -> 0o414",
"calc.help.option.plus": "和/正数1 + 2 -> 3",
"calc.help.option.power": "x 的 y 次幂(由于性能问题,指数不得超过 4e+62 ** 3 -> 8",
"calc.help.option.rand": "0 与 1 之间的随机浮点数rand() -> 0.5789015836448923",
"calc.help.option.randint": "小于 x 的随机整数randint(6) -> 5",
"calc.help.option.str": "转换为字符串str(1) -> \"1\"",
"calc.help.option.xor": "按位异或1 ^ 1 -> 0",
"calc.message.invalid": "表达式无效:${expr}",
"calc.message.running_time": "计算花费时间:${time} ms / 10000 ms。",
"calc.message.time_out": "计算超时。"
}