diff --git a/locales/ja.yml b/locales/ja.yml index 522dbfaa6..474bdf3a8 100644 --- a/locales/ja.yml +++ b/locales/ja.yml @@ -64,6 +64,7 @@ common: opponent-turn: "相手のターンです" turn-of: "{}のターンです" past-turn-of: "{}のターン" + won: "{}の勝ち" widgets: analog-clock: "アナログ時計" diff --git a/src/client/app/common/views/components/games/reversi/reversi.game.vue b/src/client/app/common/views/components/games/reversi/reversi.game.vue index dd3f3fa55..dd2c94a60 100644 --- a/src/client/app/common/views/components/games/reversi/reversi.game.vue +++ b/src/client/app/common/views/components/games/reversi/reversi.game.vue @@ -8,7 +8,7 @@

%i18n:common.reversi.opponent-turn%

%i18n:common.reversi.my-turn%

- +

@@ -111,8 +111,8 @@ export default Vue.extend({ }, cellsStyle(): any { return { - 'grid-template-rows': `repeat(${ this.game.settings.map.length }, 1fr)`, - 'grid-template-columns': `repeat(${ this.game.settings.map[0].length }, 1fr)` + 'grid-template-rows': `repeat(${this.game.settings.map.length}, 1fr)`, + 'grid-template-columns': `repeat(${this.game.settings.map[0].length}, 1fr)` }; } },