Skip to content

Commit

Permalink
fix(find-project-instructions): click or tap to classify
Browse files Browse the repository at this point in the history
  • Loading branch information
ofr1tz committed Aug 26, 2024
1 parent 3ce3f0e commit 1dd9cd3
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/components/FindProjectInstructions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ export default defineComponent({

<template>
<v-card-text>
<div class="text-h6">{{ $t('projectInstructions.classifyTitle') }}</div>
<div class="text-h6">{{ $t('findProjectInstructions.classifyTitle') }}</div>
<div class="text-p">
{{ instructionMessage }}. {{ $t('projectInstructions.classifyInstruction') }}.
{{ instructionMessage }}. {{ $t('findProjectInstructions.classifyInstruction') }}.
</div>
<v-row class="mt-2" dense>
<v-col sm="auto" lg="auto" v-for="(option, index) in options" :key="index">
Expand Down
4 changes: 2 additions & 2 deletions src/components/ProjectInfo.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default defineComponent({

<template>
<v-btn
:title="$t('findProjectInstructions.howToContribute')"
:title="$t('projectInstructions.howToContribute')"
icon="mdi-information"
color="primary"
@click="toggleDialog()"
Expand All @@ -68,7 +68,7 @@ export default defineComponent({
:value="index"
:key="page.pageNumber"
></v-tab>
<v-tab :text="$t('findProjectInstructions.howToContribute')" value="instructions"></v-tab>
<v-tab :text="$t('projectInstructions.howToContribute')" value="instructions"></v-tab>
</v-tabs>

<v-window v-model="activeTab" style="height: 70vh; overflow-y: auto">
Expand Down
8 changes: 5 additions & 3 deletions src/i18n/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,9 @@
"close": "Schließen"
},
"projectInstructions": {
"classifyTitle": "Klicke oder tippe, um zu klassifizieren",
"classifyInstruction": "Klicke oder tippe auf jede Bildkachel, bis die passende Antwort erscheint",
"classifyTitle": "Gib deine Antwort",
"classifyInstruction": "Benutze Buttons, um deine Antwort zu geben",
"howToContribute": "Wie kann ich beitragen?",
"imageCredits": "Bildnachweis",
"move": "Zurück und weiter bewegen",
"resetTitle": "Ansicht zurücksetzen",
Expand All @@ -157,7 +158,8 @@
"whereIamInstruction": "Öffne eine Karte, um zu sehen wo du gerade beiträgst"
},
"findProjectInstructions": {
"howToContribute": "Wie kann ich beitragen?",
"classifyTitle": "Klicke oder tippe, um zu klassifizieren",
"classifyInstruction": "Klicke oder tippe auf jede Bildkachel, bis die passende Antwort erscheint",
"close": "Schließen",
"moreInfo": "Mehr Info",
"moveLeft": "Vorherige Seite",
Expand Down
5 changes: 3 additions & 2 deletions src/i18n/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,8 +142,9 @@
"close": "Close"
},
"projectInstructions": {
"classifyTitle": "Click or tap to classify",
"classifyTitle": "Provide your answer",
"classifyInstruction": "Use buttons to provide your answers",
"howToContribute": "How to Contribute?",
"imageCredits": "Image credits",
"move": "Move back and forward",
"resetInstruction": "Zoom to the current shape",
Expand All @@ -157,7 +158,7 @@
"whereIamInstruction": "Open a map of where you are currently contributing"
},
"findProjectInstructions": {
"howToContribute": "How to Contribute?",
"classifyTitle": "Click or tap to classify",
"classifyInstruction": "Click or tap each image tile, until the appropriate answer appears",
"close": "Close",
"moreInfo": "More Info",
Expand Down

0 comments on commit 1dd9cd3

Please sign in to comment.