diff options
| author | selsta <selsta@sent.at> | 2019-12-08 22:06:31 +0100 |
|---|---|---|
| committer | selsta <selsta@sent.at> | 2020-02-05 17:06:52 +0100 |
| commit | 98ab4ea2aab7e680d8fa96f836c7d15c659ea082 (patch) | |
| tree | be8f4f85e9c09404070aaaeedbdef7bd1a0cf468 /pages/merchant | |
| parent | d5469c824755447608279827e12f5fc73a4bf0e9 (diff) | |
| download | monzero-gui-98ab4ea2aab7e680d8fa96f836c7d15c659ea082.tar.gz monzero-gui-98ab4ea2aab7e680d8fa96f836c7d15c659ea082.tar.xz monzero-gui-98ab4ea2aab7e680d8fa96f836c7d15c659ea082.zip | |
misc: strip html out of translatable strings
Diffstat (limited to 'pages/merchant')
| -rw-r--r-- | pages/merchant/Merchant.qml | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/pages/merchant/Merchant.qml b/pages/merchant/Merchant.qml index 99eddfcf..750ff2aa 100644 --- a/pages/merchant/Merchant.qml +++ b/pages/merchant/Merchant.qml @@ -151,14 +151,10 @@ Item { model: trackingModel message: { if(!root.enableTracking){ - return qsTr( - "<style>p{font-size:14px;}</style>" + - "<p>This page will automatically scan the blockchain and the tx pool " + - "for incoming transactions using the QR code.</p>" + - "<p>It's up to you whether to accept unconfirmed transactions or not. It is likely they'll be " + - "confirmed in short order, but there is still a possibility they might not, so for larger " + - "values you may want to wait for one or more confirmation(s).</p>" - ) + translationManager.emptyString; + return "<style>p{font-size:14px;}</style> <p>%1</p> <p>%2</p>" + .arg(qsTr("This page will automatically scan the blockchain and the tx pool for incoming transactions using the QR code.")) + .arg(qsTr("It's up to you whether to accept unconfirmed transactions or not. It is likely they'll be confirmed in short order, but there is still a possibility they might not, so for larger values you may want to wait for one or more confirmation(s)")) + + translationManager.emptyString; } else if(root.trackingError !== ""){ return root.trackingError; } else if(trackingModel.count < 1){ |
