diff options
| author | reemuru <rimuru@hiahatf.org> | 2022-01-21 01:07:47 -0500 |
|---|---|---|
| committer | reemuru <rimuru@hiahatf.org> | 2022-01-21 01:21:17 -0500 |
| commit | 2bf0dd840f907b406271863540c8efe002b2cdc3 (patch) | |
| tree | 103735665d6fc2cbe1844856840785acb4ad4ff2 /main.qml | |
| parent | 0f67580e8fc1d98a67298ecc1d70ef926521657a (diff) | |
| download | monzero-gui-2bf0dd840f907b406271863540c8efe002b2cdc3.tar.gz monzero-gui-2bf0dd840f907b406271863540c8efe002b2cdc3.tar.xz monzero-gui-2bf0dd840f907b406271863540c8efe002b2cdc3.zip | |
Advanced: ReserveProof: Resolve review by selsta
Fixes: 0f67580e
This commit updates qsTr() to avoid breaking previous
translations. Also removes an erroneous whitespace.
Diffstat (limited to 'main.qml')
| -rw-r--r-- | main.qml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1073,7 +1073,7 @@ ApplicationWindow { var good = results[1] === "true"; informationPopup.title = qsTr("Reserve proof check") + translationManager.emptyString; informationPopup.icon = good ? StandardIcon.Information : StandardIcon.Critical; - informationPopup.text = good ? qsTr("Good signature on ") + results[2] + qsTr(" total and ") + results[3] + qsTr(" spent.") : qsTr("Bad signature"); + informationPopup.text = good ? qsTr("Good signature on %1 total and %2 spent.").arg(results[2]).arg(results[3]) : qsTr("Bad signature"); } else { informationPopup.title = qsTr("Error") + translationManager.emptyString; |
