Skip to content

Commit

Permalink
Merge branch 'release/1.1.13'
Browse files Browse the repository at this point in the history
  • Loading branch information
web-flow committed Sep 19, 2024
2 parents 2bcb6d2 + efbfc03 commit 7435ae6
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@brdgm/terra-mystica-solo-helper",
"version": "1.1.12",
"version": "1.1.13",
"private": true,
"description": "Terra Mystica Solo Helper",
"appDeployName": "terra-mystica",
Expand Down
3 changes: 2 additions & 1 deletion src/components/turn/PlayerTurn.vue
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@
<ModalDialog id="passModal" :title="t('action.pass')">
<template #body>
<p v-html="t('playerTurn.passConfirm')"></p>
<p v-html="t('playerTurn.passInfo')"></p>
<p v-if="navigationState.round == 6" v-html="t('playerTurn.passInfoRound6')"></p>
<p v-else v-html="t('playerTurn.passInfo')"></p>
</template>
<template #footer>
<button class="btn btn-danger" @click="pass" data-bs-dismiss="modal">{{t('action.pass')}}</button>
Expand Down
3 changes: 2 additions & 1 deletion src/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
"playerTurn": {
"text": "Bitte führe deinen Zug durch - oder passe.",
"passConfirm": "Möchtest du passen?",
"passInfo": "Erhalte Siegpunkte von deiner Rundenbonuskarte (falls vorhanden) und nimm eine neue Rundenbonuskarte."
"passInfo": "Erhalte Siegpunkte von deiner Rundenbonuskarte (falls vorhanden) und nimm eine neue Rundenbonuskarte.",
"passInfoRound6": "Erhalte Siegpunkte von deiner Rundenbonuskarte (falls vorhanden), nimm <b>keine</b> neue Rundenbonuskarte."
},
"botAction": {
"gainVictoryPoints": {
Expand Down
3 changes: 2 additions & 1 deletion src/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,8 @@
"playerTurn": {
"text": "Please make your turn - or pass.",
"passConfirm": "Do you want to pass?",
"passInfo": "Collect your round bonus victory points (if any) and take a new Bonus card."
"passInfo": "Collect your round bonus victory points (if any) and take a new Bonus card.",
"passInfoRound6": "Collect your round bonus victory points (if any), <b>do not</b> take a new Bonus card."
},
"botAction": {
"gainVictoryPoints": {
Expand Down

0 comments on commit 7435ae6

Please sign in to comment.