summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-11-16 15:08:02 +0100
committerChristian Grothoff <christian@grothoff.org>2022-11-16 15:08:02 +0100
commit689bd7379d1552b0cccbb6f5c6e4d669563b5987 (patch)
treecccb5e29abf2cc2cc94114ddf8c5f70bd196c0f3
parent0d786a7875a1018938db7d352f218f47726806c6 (diff)
downloadwallet-core-689bd7379d1552b0cccbb6f5c6e4d669563b5987.tar.gz
wallet-core-689bd7379d1552b0cccbb6f5c6e4d669563b5987.tar.bz2
wallet-core-689bd7379d1552b0cccbb6f5c6e4d669563b5987.zip
avoid charge terminology
-rw-r--r--packages/demobank-ui/src/pages/home/index.tsx10
1 files changed, 5 insertions, 5 deletions
diff --git a/packages/demobank-ui/src/pages/home/index.tsx b/packages/demobank-ui/src/pages/home/index.tsx
index c71d801bf..c854ec1e3 100644
--- a/packages/demobank-ui/src/pages/home/index.tsx
+++ b/packages/demobank-ui/src/pages/home/index.tsx
@@ -1559,7 +1559,7 @@ function QrCodeSection({
return (
<section id="main" class="content">
- <h1 class="nav">{i18n`Charge Taler Wallet`}</h1>
+ <h1 class="nav">{i18n`Transfer to Taler Wallet`}</h1>
<article>
<div class="qr-div">
<p>{i18n`Use this QR code to withdraw to your mobile wallet:`}</p>
@@ -1759,7 +1759,7 @@ function PaymentOptions(Props: any): VNode {
setTab("charge-wallet");
}}
>
- {i18n`Charge Taler wallet`}
+ {i18n`Obtain digital cash`}
</button>
<button
class={tab === "wire-transfer" ? "tablinks active" : "tablinks"}
@@ -1767,12 +1767,12 @@ function PaymentOptions(Props: any): VNode {
setTab("wire-transfer");
}}
>
- {i18n`Wire to bank account`}
+ {i18n`Transfer to bank account`}
</button>
</div>
{tab === "charge-wallet" && (
<div id="charge-wallet" class="tabcontent active">
- <h3>{i18n`Charge Taler wallet`}</h3>
+ <h3>{i18n`Obtain digital cash`}</h3>
<WalletWithdraw
backendState={backendState}
focus
@@ -1782,7 +1782,7 @@ function PaymentOptions(Props: any): VNode {
)}
{tab === "wire-transfer" && (
<div id="wire-transfer" class="tabcontent active">
- <h3>{i18n`Wire to bank account`}</h3>
+ <h3>{i18n`Transfer to bank account`}</h3>
<PaytoWireTransfer
backendState={backendState}
focus