diff --git a/pages/Transfer.qml b/pages/Transfer.qml index c3ebeff3..dce9179b 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -553,7 +553,8 @@ Rectangle { if (appWindow.viewOnly && !appWindow.isTrustedDaemon()){ errorMessage = "

" + qsTr("* To import, you must connect to a local node or a trusted remote node") + "

"; } - return "" + + return "" + "

" + qsTr("1. Using cold wallet, export the key images into a file") + "

" + "

" + qsTr("2. Using view-only wallet, import the key images file") + "

" + errorMessage + translationManager.emptyString @@ -593,7 +594,8 @@ Rectangle { if (appWindow.viewOnly && !pageRoot.checkInformation(amountLine.text, addressLine.text, appWindow.persistentSettings.nettype)){ errorMessage = "

" + qsTr("* To create a transaction file, please enter address and amount above") + "

"; } - return "" + + return "" + "

" + qsTr("1. Using view-only wallet, export the outputs into a file") + "

" + "

" + qsTr("2. Using cold wallet, import the outputs file and export the key images") + "

" + "

" + qsTr("3. Using view-only wallet, import the key images file and create a transaction file") + "

" +