diff --git a/src/i18n/ui.ts b/src/i18n/ui.ts index 35bda35..278f046 100644 --- a/src/i18n/ui.ts +++ b/src/i18n/ui.ts @@ -152,6 +152,7 @@ export const ui = { discount: "Rabatt", mengenrabatt: (p: string) => `Mengenrabatt -${p}%`, mengenrabattTier: (ab: string, p: string) => `ab ${ab} Stück -${p}%`, couponLabel: "🎟️ Gutscheincode", couponPlaceholder: "Code eingeben", couponApply: "Einlösen", couponRemove: "Entfernen", + buyNow: "Jetzt kaufen", keptInCart: "Bleibt im Warenkorb, wird noch nicht gekauft", couponInvalid: "Code ungültig oder abgelaufen.", couponApplied: (code: string) => `Gutschein „${code}" eingelöst`, }, checkout: { @@ -333,6 +334,7 @@ export const ui = { discount: "Discount", mengenrabatt: (p: string) => `Bulk discount -${p}%`, mengenrabattTier: (ab: string, p: string) => `from ${ab} pcs -${p}%`, couponLabel: "🎟️ Coupon code", couponPlaceholder: "Enter code", couponApply: "Apply", couponRemove: "Remove", + buyNow: "Buy now", keptInCart: "Stays in cart, not purchased yet", couponInvalid: "Code invalid or expired.", couponApplied: (code: string) => `Coupon "${code}" applied`, }, checkout: { @@ -514,6 +516,7 @@ export const ui = { discount: "Rabatt", mengenrabatt: (p: string) => `Mengerabatt -${p}%`, mengenrabattTier: (ab: string, p: string) => `ab ${ab} Stuck -${p}%`, couponLabel: "🎟️ Gutschy-Code", couponPlaceholder: "Code igäh", couponApply: "Ilöse", couponRemove: "Ewägmache", + buyNow: "Jetzt chaufe", keptInCart: "Blibt im Warenchorb, wird no nid chauft", couponInvalid: "Code ungültig oder abgloffe.", couponApplied: (code: string) => `Gutschy „${code}" iglöst`, }, checkout: { @@ -695,6 +698,7 @@ export const ui = { discount: "Remise", mengenrabatt: (p: string) => `Remise de quantité -${p}%`, mengenrabattTier: (ab: string, p: string) => `dès ${ab} pièces -${p}%`, couponLabel: "🎟️ Code promo", couponPlaceholder: "Entrer le code", couponApply: "Valider", couponRemove: "Retirer", + buyNow: "Acheter maintenant", keptInCart: "Reste dans le panier, pas encore acheté", couponInvalid: "Code invalide ou expiré.", couponApplied: (code: string) => `Code promo « ${code} » appliqué`, }, checkout: { diff --git a/src/pages/ch/checkout/index.astro b/src/pages/ch/checkout/index.astro index 612f79d..5673e51 100644 --- a/src/pages/ch/checkout/index.astro +++ b/src/pages/ch/checkout/index.astro @@ -147,7 +147,7 @@ const t = useTranslations(lang); window.__checkoutVars = { freeLabel, totalLabel, shippingLabel, emptyCartAlert, thankYouPath, checkoutLang, discountLabel, couponInvalid, couponAppliedTemplate, couponRemoveLabel, klarnaConnectLabel, klarnaConnectingLabel, klarnaConnectedLabel, bankHolderLabel, bankIbanLabel, bankBicLabel, bankBankNameLabel, bankPlaceholderLabel };