Skip to content

Commit

Permalink
fixup! Improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
wpf500 committed Jan 7, 2025
1 parent 0c5e96b commit 0dfdf01
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
2 changes: 1 addition & 1 deletion apps/frontend/locales/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@
"updateResponse": "Antwort bearbeiten"
},
"addAPoint": "Klicken Sie dort auf die Karte, wo Sie einen Ort ergänzen möchten",
"addLocation": "Neuen Ort eingeben",
"addLocation": "Neuen Eintrag eingeben",
"confirmHuman": "Bitte bestätigen Sie, dass Sie ein Mensch sind",
"contactDetails": "Kontaktdaten",
"ended": "Dieser Callout ist seit dem {date} beendet.",
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/locales/de@informal.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@
"updateResponse": "Antwort bearbeiten"
},
"addAPoint": "Klicken Sie dort auf die Karte, wo Sie einen Ort ergänzen möchten",
"addLocation": "Neuen Ort eingeben",
"addLocation": "Neuen Eintrag eingeben",
"confirmHuman": "Bitte bestätige, dass du ein Mensch bist",
"contactDetails": "Kontaktdaten",
"ended": "Dieser Callout ist seit dem {date} beendet.",
Expand Down
1 change: 1 addition & 0 deletions apps/frontend/locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -335,6 +335,7 @@
"confirmHuman": "Please confirm you are human",
"contactDetails": "Contact details",
"ended": "This callout ended on {date}",
"entryOf": "Entry {no} of {total}",
"form": {
"email": "Your email",
"guestFieldsMissing": "Please tell us your contact details",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@
/>
</AppButtonGroup>

<i18n-t keypath="callout.responseOf" tag="span">
<template #number
><b>{{ n(responseIndex) }}</b></template
>
<template #count
><b>{{ n(responses.length) }}</b></template
>
<i18n-t keypath="callout.entryOf" tag="span">
<template #no>
<b>{{ n(responseIndex + 1) }}</b>
</template>
<template #total>
<b>{{ n(responses.length) }}</b>
</template>
</i18n-t>
<span> Response {{ responseIndex + 1 }} of {{ responses.length }} </span>
</div>

<CalloutResponse :callout="callout" :response="responses[responseIndex]" />
</CalloutSidePanel>
</template>
Expand Down

0 comments on commit 0dfdf01

Please sign in to comment.