commit 0b706bee64681f029fda3768962d9e4e982c6b2b
parent 38912431d13d4b1329c86b35e67a42b88ebd7aef
Author: Thien-Thi Nguyen <ttn@gnuvola.org>
Date: Mon, 24 May 2021 09:21:51 -0400
fix typo: s/override/overridden/ (five instances)
Diffstat:
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/packages/frontend/src/paths/admin/create/CreatePage.tsx b/packages/frontend/src/paths/admin/create/CreatePage.tsx
@@ -94,11 +94,11 @@ export function CreatePage({ onCreate, onBack, forceId }: Props): VNode {
<InputPayto<Entity> name="payto_uris" label={i18n`Account address`} help="x-taler-bank/bank.taler:5882/blogger" tooltip={i18n`where the money will be sent`} />
- <InputCurrency<Entity> name="default_max_deposit_fee" label={i18n`Default max deposit fee`} tooltip={i18n`max deposit fee when an order has not override it`} />
+ <InputCurrency<Entity> name="default_max_deposit_fee" label={i18n`Default max deposit fee`} tooltip={i18n`max deposit fee when an order has not overridden it`} />
- <InputCurrency<Entity> name="default_max_wire_fee" label={i18n`Default max wire fee`} tooltip={i18n`max wire fee when the order has not override it`} />
+ <InputCurrency<Entity> name="default_max_wire_fee" label={i18n`Default max wire fee`} tooltip={i18n`max wire fee when the order has not overridden it`} />
- <Input<Entity> name="default_wire_fee_amortization" label={i18n`Default wire fee amortization`} tooltip={i18n`max wire fee amortization when the order has not override it`} />
+ <Input<Entity> name="default_wire_fee_amortization" label={i18n`Default wire fee amortization`} tooltip={i18n`max wire fee amortization when the order has not overridden it`} />
<InputGroup name="address" label={i18n`Address`} tooltip={i18n`where is the merchant physical located`}>
<InputLocation name="address" />
@@ -108,9 +108,9 @@ export function CreatePage({ onCreate, onBack, forceId }: Props): VNode {
<InputLocation name="jurisdiction" />
</InputGroup>
- <InputDuration<Entity> name="default_pay_delay" label={i18n`Default pay delay`} tooltip={i18n`max time to pay if the order doest not override it`} />
+ <InputDuration<Entity> name="default_pay_delay" label={i18n`Default pay delay`} tooltip={i18n`max time to pay if the order doest not overridden it`} />
- <InputDuration<Entity> name="default_wire_transfer_delay" label={i18n`Default wire transfer delay`} tooltip={i18n`min time to wait the transfer if the merchant doest not override it`} />
+ <InputDuration<Entity> name="default_wire_transfer_delay" label={i18n`Default wire transfer delay`} tooltip={i18n`min time to wait the transfer if the merchant doest not overridden it`} />
</FormProvider>