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-12-14 19:20:48 +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 / 10000ms。",
"calc.message.time_out": "計算逾時。"
}