commit f4a971014d5376a1dd6a223e60c1e6249853825c parent 606b0e0bfa6c0cd63231229e2827e82f390d9282 Author: Christian Grothoff <christian@grothoff.org> Date: Fri, 3 Jul 2026 14:17:28 +0200 fix English strings Diffstat:
| M | packages/libeufin-bank-webui/src/pages/LoginForm.tsx | | | 6 | +++++- |
| M | packages/taler-wallet-webextension/src/wallet/Transaction.tsx | | | 6 | ++---- |
2 files changed, 7 insertions(+), 5 deletions(-)
diff --git a/packages/libeufin-bank-webui/src/pages/LoginForm.tsx b/packages/libeufin-bank-webui/src/pages/LoginForm.tsx @@ -237,7 +237,11 @@ export function LoginForm({ class="rounded-md bg-white-600 px-3 py-1.5 text-sm font-semibold leading-6 text-black shadow-sm hover:bg-gray-100 focus-visible:outline focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-gray-600" onClick={logout} > - <i18n.Translate>Forget</i18n.Translate> + {session.state.status === "loggedIn" ? ( + <i18n.Translate>Log out</i18n.Translate> + ) : ( + <i18n.Translate>Clear</i18n.Translate> + )} </Button> <Button diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx @@ -679,11 +679,9 @@ export function TransactionView({ {transaction.refundQueryActive ? ( <i18n.Translate>Refund is in progress.</i18n.Translate> ) : ( - // FIXME: verify that the refund is really picked up - // "automatically" here — investigate whether that wording is accurate. <i18n.Translate> - The merchant approved a refund for this order, but it was not - picked up automatically. + The merchant approved a refund for this order. Accept it to + receive the funds. </i18n.Translate> )} <Part