diff options
| author | rating89us <45968869+rating89us@users.noreply.github.com> | 2020-05-10 23:48:48 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-10 23:48:48 +0200 |
| commit | bbc9ca8f088e2f061c099d5e828b759368b5fe39 (patch) | |
| tree | 92b1262920fc20017c94640f225ed127a5784abe | |
| parent | afe1ae9b9c4c2d9e9628f4fecfea3038725d95df (diff) | |
| download | monzero-gui-bbc9ca8f088e2f061c099d5e828b759368b5fe39.tar.gz monzero-gui-bbc9ca8f088e2f061c099d5e828b759368b5fe39.tar.xz monzero-gui-bbc9ca8f088e2f061c099d5e828b759368b5fe39.zip | |
Transfer: fix html paragraph tag
| -rw-r--r-- | pages/Transfer.qml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pages/Transfer.qml b/pages/Transfer.qml index 3877db23..5b136a63 100644 --- a/pages/Transfer.qml +++ b/pages/Transfer.qml @@ -593,7 +593,7 @@ Rectangle { errorMessage = "<p class='orange'>" + qsTr("* To create a transaction file, please enter address and amount above") + "</p>"; } return "<style type='text/css'>p{line-height:20px; margin-top:0px; margin-bottom:0px; color:#ffffff;} p.orange{color:#ff9323;}</style>" + - "<p>" + qsTr("1. Using view-only wallet, export the outputs into a file") + + "<p>" + qsTr("1. Using view-only wallet, export the outputs into a file") + "</p>" + "<p>" + qsTr("2. Using cold wallet, import the outputs file and export the key images") + "</p>" + "<p>" + qsTr("3. Using view-only wallet, import the key images file and create a transaction file") + "</p>" + errorMessage + |
