Skip to content

Commit 371b417

Browse files
authored
Merge d6b84cd into ebc0d13
2 parents ebc0d13 + d6b84cd commit 371b417

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

src/components/Maps.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ export default {
214214
if (this.playerNumber == 1 || !this.room) {
215215
return true;
216216
} else {
217-
if (this.isNextStreetViewReady == true) {
217+
if (this.isNextStreetViewReady) {
218218
return true;
219219
} else {
220220
return false;
@@ -397,6 +397,7 @@ export default {
397397
snapshot.child('size').val()
398398
) {
399399
this.game.timeLimitation = this.timeLimitation;
400+
this.isNextStreetViewReady = false;
400401
401402
this.$emit('showResult');
402403

src/components/widgets/card/CardRoomSettings.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
>
6060
<v-checkbox
6161
v-model="timeAttack"
62-
label="TimeAttack"
62+
:label="$t('CardRoomSettings.timeAttackLabel')"
6363
></v-checkbox>
6464
</v-row>
6565
</v-col>

src/lang/TranslationsEN.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,7 @@ export default {
118118
CardRoomSettings: {
119119
title: 'Game Settings',
120120
modeLabel: 'Select game mode',
121+
timeAttackLabel: 'TimeAttack demo',
121122
},
122123
CardRoomDifficulty: {
123124
title: 'Set a difficulty level.',

0 commit comments

Comments
 (0)