From 9d09b6a7bcb4888a6e495068bd31414fdebb0678 Mon Sep 17 00:00:00 2001 From: survellow <59056368+survellow@users.noreply.github.com> Date: Mon, 23 Sep 2024 23:26:56 +0200 Subject: [PATCH] fix seemingly missing translation --- frontend/src/view/UserCalendar.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/view/UserCalendar.vue b/frontend/src/view/UserCalendar.vue index a41eac3..f2c7247 100644 --- a/frontend/src/view/UserCalendar.vue +++ b/frontend/src/view/UserCalendar.vue @@ -61,8 +61,8 @@ function shareLink() { const link = "https://" + window.location.hostname + "/calendar/view?token=" + token.value + datePart; if (typeof navigator.share === "function" && navigator.canShare()) { navigator.share({ - title: t("calendarLink.shareLinkTitle"), - text: t("calendarLink.shareLinkText"), + title: t("calendarLink.shareTitle"), + text: t("calendarLink.shareText"), url: link, }); } else {