aboutsummaryrefslogtreecommitdiff
path: root/src/webex/pages/confirm-contract.tsx
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-02-22 08:58:48 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-02-22 08:58:48 +0100
commitf4d39c10e56a9ad1737dcdf290e31095ad66b7ee (patch)
tree7339286df95be331fd0baf2ed17fc3b6b5bbc58e /src/webex/pages/confirm-contract.tsx
parenta4e6966241d418b8df05ddd7fc5556ce3c6c97af (diff)
downloadwallet-core-f4d39c10e56a9ad1737dcdf290e31095ad66b7ee.tar.xz
Swedish translation, i18n fixes
Diffstat (limited to 'src/webex/pages/confirm-contract.tsx')
-rw-r--r--src/webex/pages/confirm-contract.tsx11
1 files changed, 5 insertions, 6 deletions
diff --git a/src/webex/pages/confirm-contract.tsx b/src/webex/pages/confirm-contract.tsx
index 0aaed4837..24e08aec8 100644
--- a/src/webex/pages/confirm-contract.tsx
+++ b/src/webex/pages/confirm-contract.tsx
@@ -370,8 +370,7 @@ class ContractPrompt extends React.Component<ContractPromptProps, ContractPrompt
return (
<div>
<i18n.Translate wrap="p">
- The merchant <span>{merchantName}</span> {" "}
- offers you to purchase:
+ The merchant <span>{merchantName} </span> offers you to purchase:
</i18n.Translate>
<div style={{"text-align": "center"}}>
<strong>{c.summary}</strong>
@@ -379,12 +378,12 @@ class ContractPrompt extends React.Component<ContractPromptProps, ContractPrompt
<strong></strong>
{products}
{(this.state.payStatus && this.state.payStatus.coinSelection)
- ? <p>
- The total price is <span>{amount}</span>{" "}
+ ? <i18n.Translate wrap="p">
+ The total price is <span>{amount} </span>
(plus <span>{renderAmount(this.state.payStatus.coinSelection.totalFees)}</span> fees).
- </p>
+ </i18n.Translate>
:
- <p>The total price is <span>{amount}</span>.</p>
+ <i18n.Translate wrap="p">The total price is <span>{amount}</span>.</i18n.Translate>
}
{ this.state.confirmPayError
? PayErrorDialog()