fix(i18n): typos

This commit is contained in:
2026-02-26 15:11:42 +01:00
parent 94d94fdef0
commit 7c69a4b5bc
2 changed files with 5 additions and 5 deletions

View File

@@ -19,7 +19,7 @@ let timeline: gsap.core.Timeline | null = null;
const text = computed(() => {
const project = store.projects[store.currentProject]!;
return $t("projects.linkConformationPopup.text", {
return $t("projects.linkConfirmationPopup.text", {
url: project.link.replace(/^https?:\/\//, ""),
});
});
@@ -155,13 +155,13 @@ onRender((ctx) => {
drawTextWithShadow(
ctx,
$t("projects.linkConformationPopup.yes").toUpperCase(),
$t("projects.linkConfirmationPopup.yes").toUpperCase(),
207,
YES_Y - 3,
);
drawTextWithShadow(
ctx,
$t("projects.linkConformationPopup.no").toUpperCase(),
$t("projects.linkConfirmationPopup.no").toUpperCase(),
207,
NO_Y - 3,
);