diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2019-06-15 17:06:03 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2019-06-15 17:06:03 +0900 |
| commit | 6d08909b2f694972c847d10262327723169df590 (patch) | |
| tree | 9bda4455587772bbaa31e73f6130e460bf804e61 | |
| parent | Resolve #365 (diff) | |
| download | misskey-6d08909b2f694972c847d10262327723169df590.tar.gz misskey-6d08909b2f694972c847d10262327723169df590.tar.bz2 misskey-6d08909b2f694972c847d10262327723169df590.zip | |
Refactor
| -rw-r--r-- | locales/ja-JP.yml | 4 | ||||
| -rw-r--r-- | src/misc/aiscript/evaluator.ts | 2 | ||||
| -rw-r--r-- | src/misc/aiscript/index.ts | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index 52f1e2901c..7053360a11 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -2060,8 +2060,8 @@ pages: _divide: arg1: "A" arg2: "B" - remind: "÷ 割った余り" - _remind: + mod: "÷ 割った余り" + _mod: arg1: "A" arg2: "B" eq: "AとBが同じ" diff --git a/src/misc/aiscript/evaluator.ts b/src/misc/aiscript/evaluator.ts index 541d4e4c65..d93fcebcf7 100644 --- a/src/misc/aiscript/evaluator.ts +++ b/src/misc/aiscript/evaluator.ts @@ -161,7 +161,7 @@ export class ASEvaluator { subtract: (a: number, b: number) => a - b, multiply: (a: number, b: number) => a * b, divide: (a: number, b: number) => a / b, - remind: (a: number, b: number) => a % b, + mod: (a: number, b: number) => a % b, strLen: (a: string) => a.length, strPick: (a: string, b: number) => a[b - 1], strReplace: (a: string, b: string, c: string) => a.split(b).join(c), diff --git a/src/misc/aiscript/index.ts b/src/misc/aiscript/index.ts index 236b332da7..8635399daa 100644 --- a/src/misc/aiscript/index.ts +++ b/src/misc/aiscript/index.ts @@ -58,7 +58,7 @@ export const funcDefs: Record<string, { in: any[]; out: any; category: string; i subtract: { in: ['number', 'number'], out: 'number', category: 'operation', icon: faMinus, }, multiply: { in: ['number', 'number'], out: 'number', category: 'operation', icon: faTimes, }, divide: { in: ['number', 'number'], out: 'number', category: 'operation', icon: faDivide, }, - remind: { in: ['number', 'number'], out: 'number', category: 'operation', icon: faDivide, }, + mod: { in: ['number', 'number'], out: 'number', category: 'operation', icon: faDivide, }, eq: { in: [0, 0], out: 'boolean', category: 'comparison', icon: faEquals, }, notEq: { in: [0, 0], out: 'boolean', category: 'comparison', icon: faNotEqual, }, gt: { in: ['number', 'number'], out: 'boolean', category: 'comparison', icon: faGreaterThan, }, |