diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2020-05-14 16:00:43 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2020-05-14 16:00:43 -0500 |
| commit | 73cc400ae891b81a31465392d0f496cd1bac312c (patch) | |
| tree | 6dca001b5a9a6a3f261df72a264f3d20198dacda | |
| parent | 8b7438ace2b1c98e2203d22c3feb6a070fb268cf (diff) | |
| parent | bbc9ca8f088e2f061c099d5e828b759368b5fe39 (diff) | |
| download | monzero-gui-73cc400ae891b81a31465392d0f496cd1bac312c.tar.gz monzero-gui-73cc400ae891b81a31465392d0f496cd1bac312c.tar.xz monzero-gui-73cc400ae891b81a31465392d0f496cd1bac312c.zip | |
Merge pull request #2896
bbc9ca8 Transfer: fix html paragraph tag (rating89us)
| -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 + |
