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/en_us.json
Dorobot 788cb8b648
New Crowdin updates (#590)
* New translations zh_cn.json (Chinese Traditional)

* New translations zh_cn.json (English)

* Update source file zh_cn.json

* New translations zh_cn.json (Chinese Traditional)

* New translations zh_cn.json (English)

* New translations zh_cn.json (Chinese Traditional)

* New translations zh_cn.json (English)

* New translations zh_cn.json (Chinese Traditional)

* Update source file zh_cn.json

* Update source file zh_cn.json

* New translations zh_cn.json (Chinese Traditional)

* New translations zh_cn.json (English)

* New translations zh_cn.json (Chinese Traditional)

* New translations zh_cn.json (English)

* New translations zh_cn.json (Chinese Traditional)

* New translations zh_cn.json (English)

* Update source file zh_cn.json

* Update source file zh_cn.json

* New translations zh_cn.json (Chinese Traditional)

* New translations zh_cn.json (English)

* New translations zh_cn.json (Chinese Traditional)

---------

Co-authored-by: 多羅狼 <Dorowolf314@gmail.com>
2023-05-12 15:34:31 +08:00

34 lines
2.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.calc.help.plus": "Sum / Positive Sign: 1 + 2 -> 3",
"calc.calc.help.minus": "Subtract / Negative Sign: 3 - 1 -> 2",
"calc.calc.help.divide": "Division: 6 / 3 -> 2",
"calc.calc.help.multiply": "Multiplication: 2 * 3 -> 6",
"calc.calc.help.power": "x to the power of y (y must not be over 4e+6 due to performance limits): 2 ** 3 -> 8",
"calc.calc.help.modulo": "Modulo: 5 % 2 ->1",
"calc.calc.help.equal": "Equal to: 1 == 1 -> True",
"calc.calc.help.less_equal": "小于等于1 <= 2 -> True",
"calc.calc.help.greater_equal": "大于等于1 >= 2 -> False",
"calc.calc.help.move_right": "x 右移 y 位(相当于 x / (2 ** y)y < 1000032 >> 5 -> 1",
"calc.calc.help.move_left": "x 左移 y 位(相当于 x * (2 ** y)y < 100001 << 5 -> 32",
"calc.calc.help.xor": "按位异或1 ^ 1 -> 0",
"calc.calc.help.not": "非not True -> False",
"calc.calc.help.is": "x 与 y 是同一个对象1 is 1 -> True",
"calc.calc.help.randint": "小于 x 的随机整数randint(6) -> 5",
"calc.calc.help.rand": "0 与 1 之间的随机浮点数rand() -> 0.5789015836448923",
"calc.calc.help.int": "转换为整数int(1.5) -> 1",
"calc.calc.help.float": "转换为浮点数float(1) -> 1.0",
"calc.calc.help.str": "转换为字符串str(1) -> \"1\"",
"calc.calc.help.complex": "转换为复数complex(1) -> (1 + 0j)",
"calc.calc.help.bool": "转换为布尔值bool(1) -> True",
"calc.calc.help.bin": "转换为二进制bin(268) -> 0b100001100",
"calc.calc.help.oct": "转换为八进制oct(268) -> 0o414",
"calc.calc.help.hex": "转换为十六进制hex(268) -> 0x10c",
"calc.calc.help.more": "More available operators and functions",
"calc.calc.message.invalid": "Invalid expression: ${expr}",
"calc.calc.message.time_out": "Calculation timeout.",
"calc.calc.help.desc": "Safely evaluate Python ast expressions.",
"calc.message.running_time": "计算花费时间:${time} ms / 10000 ms。",
"calc.factor.prime.help": "分解质因数。",
"calc.factor.prime.message.error": "发生错误:必须为大于 1 的正整数。",
"calc.factor.prime.message.is_prime": "${num} is prime number."
}