All files ja.ts

0% Statements 0/0
0% Branches 0/0
0% Functions 0/0
0% Lines 0/0

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40                                                                               
import { ChessLocale } from "../types.js";
 
export default {
  engine: {
    title: "チェスエンジン",
    status: "ステータス",
    depth: "深さ",
    nodes: "ノード数",
    nps: "NPS",
    time: "時間",
    score: "評価値",
    visits: "試行回数",
    mateIn: "{n} 手詰",
    advantage: "優勢 +{v}",
    sideWhite: "先手 (白)",
    sideBlack: "後手 (黒)",
  },
  gameBoard: {
    title: "チェス盤",
    chessPieces: {
      P: "歩 (白)",
      N: "ナイト (白)",
      B: "ビショップ (白)",
      R: "ルーク (白)",
      Q: "クイーン (白)",
      K: "キング (白)",
      p: "歩 (黒)",
      n: "ナイト (黒)",
      b: "ビショップ (黒)",
      r: "ルーク (黒)",
      q: "クイーン (黒)",
      k: "キング (黒)",
    },
  },
  errors: {
    missingFEN: "探索オプションに FEN 文字列がありません。",
    invalidFEN: 'FEN 形式が不正です: "{fen}"。',
  },
} satisfies ChessLocale;