forked from potsda.mn/mobilizon
fix(front): make recipient field placeholder translatable
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
parent
24d92f60f7
commit
10ce812660
|
@ -7,7 +7,7 @@
|
||||||
:allow-new="false"
|
:allow-new="false"
|
||||||
:open-on-focus="false"
|
:open-on-focus="false"
|
||||||
field="displayName"
|
field="displayName"
|
||||||
placeholder="Add a recipient"
|
:placeholder="t('Add a recipient')"
|
||||||
@typing="getActors"
|
@typing="getActors"
|
||||||
>
|
>
|
||||||
<template #default="props">
|
<template #default="props">
|
||||||
|
@ -23,6 +23,7 @@ import { Paginate } from "@/types/paginate";
|
||||||
import { useLazyQuery } from "@vue/apollo-composable";
|
import { useLazyQuery } from "@vue/apollo-composable";
|
||||||
import { computed, ref } from "vue";
|
import { computed, ref } from "vue";
|
||||||
import ActorInline from "./ActorInline.vue";
|
import ActorInline from "./ActorInline.vue";
|
||||||
|
import { useI18n } from "vue-i18n";
|
||||||
|
|
||||||
const props = defineProps<{
|
const props = defineProps<{
|
||||||
modelValue: IActor[];
|
modelValue: IActor[];
|
||||||
|
@ -41,6 +42,8 @@ const modelValueWithDisplayName = computed(() =>
|
||||||
}))
|
}))
|
||||||
);
|
);
|
||||||
|
|
||||||
|
const { t } = useI18n({ useScope: "global" });
|
||||||
|
|
||||||
const {
|
const {
|
||||||
load: loadSearchPersonsAndGroupsQuery,
|
load: loadSearchPersonsAndGroupsQuery,
|
||||||
refetch: refetchSearchPersonsAndGroupsQuery,
|
refetch: refetchSearchPersonsAndGroupsQuery,
|
||||||
|
|
|
@ -1636,5 +1636,7 @@
|
||||||
"Either your participation has already been cancelled, either the validation token is incorrect.": "Either your participation has already been cancelled, either the validation token is incorrect.",
|
"Either your participation has already been cancelled, either the validation token is incorrect.": "Either your participation has already been cancelled, either the validation token is incorrect.",
|
||||||
"Your participation has been cancelled": "Your participation has been cancelled",
|
"Your participation has been cancelled": "Your participation has been cancelled",
|
||||||
"Return to the event page": "Return to the event page",
|
"Return to the event page": "Return to the event page",
|
||||||
"Cancel participation": "Cancel participation"
|
"Cancel participation": "Cancel participation",
|
||||||
|
"Add a recipient": "Add a recipient",
|
||||||
|
"Announcements for {eventTitle}": "Announcements for {eventTitle}"
|
||||||
}
|
}
|
|
@ -1630,5 +1630,7 @@
|
||||||
"Either your participation has already been cancelled, either the validation token is incorrect.": "Soit votre participation a déjà été annulée, soit le jeton de validation est incorrect.",
|
"Either your participation has already been cancelled, either the validation token is incorrect.": "Soit votre participation a déjà été annulée, soit le jeton de validation est incorrect.",
|
||||||
"Your participation has been cancelled": "Votre participation a été annulée",
|
"Your participation has been cancelled": "Votre participation a été annulée",
|
||||||
"Return to the event page": "Retourner à la page de l'événement",
|
"Return to the event page": "Retourner à la page de l'événement",
|
||||||
"Cancel participation": "Annuler la participation"
|
"Cancel participation": "Annuler la participation",
|
||||||
|
"Add a recipient": "Ajouter un·e destinataire",
|
||||||
|
"Announcements for {eventTitle}": "Annonces pour {eventTitle}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue