fix seemingly missing translation

This commit is contained in:
survellow
2024-09-23 23:26:56 +02:00
parent 7825cae8aa
commit 9d09b6a7bc

View File

@ -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 {