From f9f2911c761af1c8ed1c323dcd414cbaa9eeae7c Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 13 Sep 2022 11:07:39 -0300 Subject: adding missing i18n --- .../src/wallet/DestinationSelection.tsx | 62 ++++++++++++++++------ 1 file changed, 46 insertions(+), 16 deletions(-) (limited to 'packages/taler-wallet-webextension/src/wallet/DestinationSelection.tsx') diff --git a/packages/taler-wallet-webextension/src/wallet/DestinationSelection.tsx b/packages/taler-wallet-webextension/src/wallet/DestinationSelection.tsx index fa1a606f7..3143aafa1 100644 --- a/packages/taler-wallet-webextension/src/wallet/DestinationSelection.tsx +++ b/packages/taler-wallet-webextension/src/wallet/DestinationSelection.tsx @@ -329,14 +329,16 @@ export function DestinationSelectionGetCash({ }} /> {previous.length > 0 ? ( -

Use previous origins:

+

+ Use previous origins: +

@@ -354,35 +356,45 @@ export function DestinationSelectionGetCash({ ) : undefined} {previous.length > 0 ? ( -

Or specify a new origin for the money

+

+ + Or specify the origin of the money + +

) : ( -

Specify a origin for the money

+

+ Specify the origin of the money +

)} -

From my bank account

+

+ From my bank account +

-

From another wallet

+

+ From another wallet +

@@ -428,7 +440,11 @@ export function DestinationSelectionSendCash({ const previous = previous1; if (!currency) { - return
currency not provided
; + return ( +
+ currency not provided +
+ ); } const currencyAndAmount = `${currency}:${amount}`; const parsedAmount = Amounts.parse(currencyAndAmount); @@ -459,7 +475,9 @@ export function DestinationSelectionSendCash({ {previous.length > 0 ? ( -

Use previous destinations:

+

+ Use previous destinations: +

@@ -477,33 +495,45 @@ export function DestinationSelectionSendCash({ ) : undefined} {previous.length > 0 ? ( -

Or specify a new destination for the money

+

+ + Or specify the destination of the money + +

) : ( -

Specify a destination for the money

+

+ + Specify the destination of the money + +

)} -

To my bank account

+

+ To my bank account +

-

To another wallet

+

+ To another wallet +

-- cgit v1.2.3