From 1c6bdd2b548aefbdb01599f7e6f34f0e24c7c04c Mon Sep 17 00:00:00 2001 From: Brett Florio Date: Thu, 25 Feb 2021 17:14:29 -0800 Subject: [PATCH] fix(i18n): Fix typo in language string key --- src/elements/public/ItemsForm/ItemsForm.ts | 2 +- src/static/translations/items-form/en.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/elements/public/ItemsForm/ItemsForm.ts b/src/elements/public/ItemsForm/ItemsForm.ts index 4cb329c53..ef663b0ae 100644 --- a/src/elements/public/ItemsForm/ItemsForm.ts +++ b/src/elements/public/ItemsForm/ItemsForm.ts @@ -426,7 +426,7 @@ export class ItemsForm extends Translatable { period: this._t(duration.units).toLowerCase(), }); } else { - return this._t('checkout.subscribe_muiltiple_units', { + return this._t('checkout.subscribe_multiple_units', { value, period: this.__translateFrequency(this.sub_frequency).toLowerCase(), }); diff --git a/src/static/translations/items-form/en.json b/src/static/translations/items-form/en.json index 1f5d49044..acd120588 100644 --- a/src/static/translations/items-form/en.json +++ b/src/static/translations/items-form/en.json @@ -2,7 +2,7 @@ "checkout": { "buy": "Buy for {{value}}", "subscribe_single_unit": "Subscribe for {{value}}/{{period}}", - "subscribe_muiltiple_units": "Subscribe for {{value}} {{period}}" + "subscribe_multiple_units": "Subscribe for {{value}} {{period}}" }, "freq": { "just_this_once": "Just this once",