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_tw.json
2023-06-26 23:56:00 +08:00

31 lines
No EOL
1.9 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.calc.bin": "轉換為二進位bin(268) -> 0b100001100",
"calc.help.calc.bool": "轉換為布林值bool(1) -> True",
"calc.help.calc.complex": "轉換為複數complex(1) -> (1 + 0j)",
"calc.help.calc.desc": "安全地計算 Python ast 運算式。",
"calc.help.calc.divide": "商6 / 3 -> 2",
"calc.help.calc.equal": "等於1 == 1 -> True",
"calc.help.calc.float": "轉換為浮點數float(1) -> 1.0",
"calc.help.calc.greater_equal": "大於等於1 >= 2 -> False",
"calc.help.calc.hex": "轉換為十六進位hex(268) -> 0x10c",
"calc.help.calc.int": "转换为整数int(1.5) -> 1",
"calc.help.calc.is": "x 与 y 是同一个对象1 is 1 -> True",
"calc.help.calc.less_equal": "小於等於1 <= 2 -> True",
"calc.help.calc.minus": "差/負數3 - 1 -> 2",
"calc.help.calc.modulo": "取模5 % 2 -> 1",
"calc.help.calc.more": "更多可用運算子和函式",
"calc.help.calc.move_left": "x 左移 y 位(相当于 x * (2 ** y)y < 100001 << 5 -> 32",
"calc.help.calc.move_right": "x 右移 y 位(相当于 x / (2 ** y)y < 1000032 >> 5 -> 1",
"calc.help.calc.multiply": "積2 * 3 -> 6",
"calc.help.calc.not": "非not True -> False",
"calc.help.calc.oct": "轉換為八進位oct(268) -> 0o414",
"calc.help.calc.plus": "和/正數1 + 2 -> 3",
"calc.help.calc.power": "x 的 y 次冪(由于性能问题,指数不得超过 4e+62 ** 3 -> 8",
"calc.help.calc.rand": "0 与 1 之间的随机浮点数rand() -> 0.5789015836448923",
"calc.help.calc.randint": "小于 x 的随机整数randint(6) -> 5",
"calc.help.calc.str": "轉換為字串str(1) -> \"1\"",
"calc.help.calc.xor": "按位异或1 ^ 1 -> 0",
"calc.message.calc.invalid": "運算式無效:${expr}",
"calc.message.running_time": "計算耗費時間:${time} ms / 10000 ms。",
"calc.message.time_out": "計算逾時。"
}