add Japanese translation of switch rules

This commit is contained in:
Hiroyasu Nishiyama 2022-05-08 08:59:07 +09:00
parent e8ddd6d16d
commit 05eb055b8c
1 changed files with 14 additions and 14 deletions

View File

@ -737,22 +737,22 @@
"stopfirst": "最初に合致した条件で終了", "stopfirst": "最初に合致した条件で終了",
"ignorecase": "大文字、小文字を区別しない", "ignorecase": "大文字、小文字を区別しない",
"rules": { "rules": {
"btwn": "is between", "btwn": "範囲内である",
"cont": "contains", "cont": "要素に含む",
"regex": "matches regex", "regex": "正規表現にマッチ",
"true": "is true", "true": "trueである",
"false": "is false", "false": "falseである",
"null": "is null", "null": "nullである",
"nnull": "is not null", "nnull": "nullでない",
"istype": "is of type", "istype": "指定型である",
"empty": "is empty", "empty": "空である",
"nempty": "is not empty", "nempty": "空でない",
"head": "head", "head": "先頭要素である",
"tail": "tail", "tail": "末尾要素である",
"index": "index between", "index": "指定添字範囲要素である",
"exp": "JSONata式", "exp": "JSONata式",
"else": "その他", "else": "その他",
"hask": "has key" "hask": "キーを含む"
}, },
"errors": { "errors": {
"invalid-expr": "不正な表現: __error__", "invalid-expr": "不正な表現: __error__",