aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/pages/business
diff options
context:
space:
mode:
Diffstat (limited to 'packages/demobank-ui/src/pages/business')
-rw-r--r--packages/demobank-ui/src/pages/business/CreateCashout.tsx6
-rw-r--r--packages/demobank-ui/src/pages/business/ShowCashoutDetails.tsx2
2 files changed, 4 insertions, 4 deletions
diff --git a/packages/demobank-ui/src/pages/business/CreateCashout.tsx b/packages/demobank-ui/src/pages/business/CreateCashout.tsx
index e4fda8fb6..e3602bff1 100644
--- a/packages/demobank-ui/src/pages/business/CreateCashout.tsx
+++ b/packages/demobank-ui/src/pages/business/CreateCashout.tsx
@@ -175,7 +175,7 @@ export function CreateCashout({
amount: !form.amount
? i18n.str`required`
: !inputAmount
- ? i18n.str`could not be parsed`
+ ? i18n.str`invalid`
: Amounts.cmp(limit, calc.debit) === -1
? i18n.str`balance is not enough`
: Amounts.cmp(calc.credit, sellFee) === -1
@@ -229,7 +229,7 @@ export function CreateCashout({
});
case TalerErrorCode.BANK_BAD_CONVERSION: return notify({
type: "error",
- title: i18n.str`The exchange rate was incorrectly applied`,
+ title: i18n.str`The conversion rate was incorrectly applied`,
description: resp.detail.hint as TranslatedString,
debug: resp.detail,
});
@@ -467,7 +467,7 @@ export function CreateCashout({
class="block text-sm font-medium leading-6 text-gray-900"
for="channel"
>
- {i18n.str`Confirmation the operation using`}
+ {i18n.str`Confirm the operation using`}
</label>
<div class="mt-2 max-w-xl text-sm text-gray-500">
<div class="px-4 mt-4 grid grid-cols-1 gap-y-6">
diff --git a/packages/demobank-ui/src/pages/business/ShowCashoutDetails.tsx b/packages/demobank-ui/src/pages/business/ShowCashoutDetails.tsx
index b517a7d42..76876df5d 100644
--- a/packages/demobank-ui/src/pages/business/ShowCashoutDetails.tsx
+++ b/packages/demobank-ui/src/pages/business/ShowCashoutDetails.tsx
@@ -156,7 +156,7 @@ export function ShowCashoutDetails({
});
case TalerErrorCode.BANK_BAD_CONVERSION: return notify({
type: "error",
- title: i18n.str`The exchange rate was incorrectly applied`,
+ title: i18n.str`The conversion rate was incorrectly applied`,
description: resp.detail.hint as TranslatedString,
debug: resp.detail,
});