diff --git a/main.qml b/main.qml index 4d69d217..1d41db3b 100644 --- a/main.qml +++ b/main.qml @@ -564,7 +564,7 @@ ApplicationWindow { function onWalletMoneySent(txId, amount) { // refresh transaction history here - console.log("money sent found") + console.log("monero sent found") currentWallet.refresh() currentWallet.history.refresh(currentWallet.currentSubaddressAccount) // this will refresh model } @@ -777,7 +777,7 @@ ApplicationWindow { txid_text += ", " txid_text += txid[i] } - informationPopup.text = (viewOnly)? qsTr("Transaction saved to file: %1").arg(path) : qsTr("Money sent successfully: %1 transaction(s) ").arg(txid.length) + txid_text + translationManager.emptyString + informationPopup.text = (viewOnly)? qsTr("Transaction saved to file: %1").arg(path) : qsTr("Monero sent successfully: %1 transaction(s) ").arg(txid.length) + txid_text + translationManager.emptyString informationPopup.icon = StandardIcon.Information if (transactionDescription.length > 0) { for (var i = 0; i < txid.length; ++i) diff --git a/pages/Transfer.qml b/pages/Transfer.qml index f4020984..c6a4ea5b 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -577,7 +577,7 @@ Rectangle { informationPopup.open(); } else { informationPopup.title = qsTr("Information") + translationManager.emptyString - informationPopup.text = qsTr("Money sent successfully") + translationManager.emptyString + informationPopup.text = qsTr("Monero sent successfully") + translationManager.emptyString informationPopup.icon = StandardIcon.Information informationPopup.onCloseCallback = null informationPopup.open();