Skip to content

Commit

Permalink
fix(i18n): Fix typo in language string key
Browse files Browse the repository at this point in the history
  • Loading branch information
brettflorio committed Feb 26, 2021
1 parent 4d8a7d7 commit 1c6bdd2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/elements/public/ItemsForm/ItemsForm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
});
Expand Down
2 changes: 1 addition & 1 deletion src/static/translations/items-form/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1c6bdd2

Please sign in to comment.