Skip to content

Commit

Permalink
Update Receive.qml
Browse files Browse the repository at this point in the history
  • Loading branch information
rating89us committed Jan 13, 2020
1 parent fa5d1bd commit a8a5e9a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions pages/Receive.qml
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ Rectangle {
MoneroComponents.StandardButton {
Layout.preferredWidth: 220
small: true
text: FontAwesome.save + qsTr(" Save as image") + translationManager.emptyString
text: FontAwesome.save + " %1".arg(qsTr("Save as image")) + translationManager.emptyString
label.font.family: FontAwesome.fontFamily
fontSize: 13
onClicked: qrFileDialog.open()
Expand All @@ -305,7 +305,7 @@ Rectangle {
MoneroComponents.StandardButton {
Layout.preferredWidth: 220
small: true
text: FontAwesome.clipboard + qsTr(" Copy to clipboard") + translationManager.emptyString
text: FontAwesome.clipboard + " %1".arg(qsTr("Copy to Cliboard")) + translationManager.emptyString
label.font.family: FontAwesome.fontFamily
fontSize: 13
onClicked: {
Expand All @@ -319,7 +319,7 @@ Rectangle {
MoneroComponents.StandardButton {
Layout.preferredWidth: 220
small: true
text: FontAwesome.eye + qsTr(" Show on device") + translationManager.emptyString
text: FontAwesome.eye + " %1".arg(qsTr("Show on device")) + translationManager.emptyString
label.font.family: FontAwesome.fontFamily
fontSize: 13
visible: appWindow.currentWallet ? appWindow.currentWallet.isHwBacked() : false
Expand All @@ -332,7 +332,7 @@ Rectangle {
}
}
}

MessageDialog {
id: receivePageDialog
standardButtons: StandardButton.Ok
Expand Down

0 comments on commit a8a5e9a

Please sign in to comment.