From 4a7a1028b78d8d4634d26ff04adfe6f47a014809 Mon Sep 17 00:00:00 2001 From: Pihkaal Date: Thu, 26 Feb 2026 15:11:42 +0100 Subject: [PATCH] fix(i18n): typos --- .../Projects/BottomScreen/LinkConfirmationPopup.vue | 6 +++--- i18n/locales/en.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/components/Projects/BottomScreen/LinkConfirmationPopup.vue b/app/components/Projects/BottomScreen/LinkConfirmationPopup.vue index 52f150c..4898615 100644 --- a/app/components/Projects/BottomScreen/LinkConfirmationPopup.vue +++ b/app/components/Projects/BottomScreen/LinkConfirmationPopup.vue @@ -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, ); diff --git a/i18n/locales/en.json b/i18n/locales/en.json index b436a4c..d05fc90 100644 --- a/i18n/locales/en.json +++ b/i18n/locales/en.json @@ -129,7 +129,7 @@ }, "user": { "title": "User", - "description": "Enter user informations.", + "description": "Enter user information.", "color": { "title": "Color", "description": "Select your favorite color.", @@ -199,7 +199,7 @@ "backToHome": "Back to Home" }, "projects": { - "linkConformationPopup": { + "linkConfirmationPopup": { "yes": "yes", "no": "no", "text": "Open {url}?"