diff options
| author | j-berman <justinberman@protonmail.com> | 2022-10-29 14:22:37 -0500 |
|---|---|---|
| committer | j-berman <justinberman@protonmail.com> | 2022-10-29 14:22:37 -0500 |
| commit | 499c2a47fcf0aac6698a35ea30907f381c459776 (patch) | |
| tree | 382bfb127ecb4b8bf3f59a5436544a0e55cbc8fc /pages | |
| parent | 3b0e66a3d08959c267670e832a87bdada3a91335 (diff) | |
| download | monzero-gui-499c2a47fcf0aac6698a35ea30907f381c459776.tar.gz monzero-gui-499c2a47fcf0aac6698a35ea30907f381c459776.tar.xz monzero-gui-499c2a47fcf0aac6698a35ea30907f381c459776.zip | |
qsTr scan tx error
Diffstat (limited to 'pages')
| -rw-r--r-- | pages/settings/SettingsWallet.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/settings/SettingsWallet.qml b/pages/settings/SettingsWallet.qml index 67194231..db1ac495 100644 --- a/pages/settings/SettingsWallet.qml +++ b/pages/settings/SettingsWallet.qml @@ -144,7 +144,7 @@ Rectangle { console.error("Error: ", currentWallet.errorString); if (currentWallet.errorString == "The wallet has already seen 1 or more recent transactions than the scanned tx") { informationPopup.title = qsTr("Error") + translationManager.emptyString; - informationPopup.text = currentWallet.errorString + ".\n\nIn order to rescan the transaction, you can re-sync your wallet by resetting the wallet restore height in the Settings > Info page. Make sure to use a restore height from before your wallet's earliest transaction." + translationManager.emptyString; + informationPopup.text = qsTr("The wallet has already seen 1 or more recent transactions than the scanned transaction.\n\nIn order to rescan the transaction, you can re-sync your wallet by resetting the wallet restore height in the Settings > Info page. Make sure to use a restore height from before your wallet's earliest transaction.") + translationManager.emptyString; informationPopup.icon = StandardIcon.Critical informationPopup.onCloseCallback = null informationPopup.open(); |
