Skip to content

Commit ae707ad

Browse files
committed
feat(street): adjust instruction message
1 parent ff1d402 commit ae707ad

File tree

4 files changed

+6
-4
lines changed

4 files changed

+6
-4
lines changed

src/components/StreetProject.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export default defineComponent({
8383
},
8484
computed: {
8585
instructionMessage() {
86-
const message = this.project?.lookFor
86+
const message = this.$t('streetProject.lookFor', { lookFor: this.project?.lookFor })
8787
return message
8888
},
8989
},

src/components/StreetProjectInstructions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export default defineComponent({
2323
<v-card-text>
2424
<div class="text-h6">{{ $t('projectInstructions.classifyTitle') }}</div>
2525
<div class="text-p">
26-
{{ instructionMessage }} {{ $t('projectInstructions.classifyInstruction') }}.
26+
{{ instructionMessage }}. {{ $t('projectInstructions.classifyInstruction') }}.
2727
</div>
2828

2929
<v-row v-for="(option, optionIndex) in options" :key="optionIndex" align="center" dense>

src/i18n/locales/de.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@
202202
},
203203
"streetProject": {
204204
"moveLeft": "Zurück",
205-
"moveRight": "Weiter"
205+
"moveRight": "Weiter",
206+
"lookFor": "Suche {lookFor}"
206207
},
207208
"digitizeProjectInstructions": {
208209
"switchMode": "Editiermodus umschalten",

src/i18n/locales/en.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,8 @@
202202
},
203203
"streetProject": {
204204
"moveLeft": "Back",
205-
"moveRight": "Forward"
205+
"moveRight": "Forward",
206+
"lookFor": "Look for {lookFor}"
206207
},
207208
"digitizeProjectInstructions": {
208209
"switchMode": "Switch editing mode",

0 commit comments

Comments
 (0)