diff --git a/locales/en/apgames.json b/locales/en/apgames.json index 0e5db3c2..4981e560 100644 --- a/locales/en/apgames.json +++ b/locales/en/apgames.json @@ -4999,6 +4999,7 @@ "LABEL_COLLECTION": "Player {{playerNum}}'s pyramids", "MUST_PASS": "Once you have passed, you must continue passing.", "NOPASS": "You cannot pass while you have legal moves.", + "PARTIAL_CLAIM": "Click an accessible target pyramid to claim it.", "PARTIAL_MOVE": "Click an accessible destination pyramid.", "VALID_PLACEMENT": "Looks like a good placement.", "VALID_PLAY": "Looks like a good play." diff --git a/src/games/stawvs.ts b/src/games/stawvs.ts index b68815f0..9a2fb1b1 100644 --- a/src/games/stawvs.ts +++ b/src/games/stawvs.ts @@ -537,7 +537,7 @@ export class StawvsGame extends GameBase { const cell0 = cells[0]; if (!this.hasOwner(cell0) || this.getOwner(cell0) !== this.currplayer) { result.valid = false; - result.message = i18next.t("apgames:validation.stawvs.BAD_START", {m}); + result.message = i18next.t("apgames:validation.stawvs.BAD_START"); return result; }