mirror of
https://github.com/monero-project/monero-gui.git
synced 2024-11-17 08:17:59 +00:00
AddressBook menu improvment: Send to this address
This commit is contained in:
parent
4ca35af11a
commit
e2bfe25b9d
4 changed files with 4 additions and 4 deletions
|
@ -122,7 +122,7 @@ ListView {
|
||||||
ListModel {
|
ListModel {
|
||||||
id: dropModel
|
id: dropModel
|
||||||
ListElement { name: "<b>Copy address to clipboard</b>"; icon: "../images/dropdownCopy.png" }
|
ListElement { name: "<b>Copy address to clipboard</b>"; icon: "../images/dropdownCopy.png" }
|
||||||
ListElement { name: "<b>Send to same destination</b>"; icon: "../images/dropdownSend.png" }
|
ListElement { name: "<b>Send to this address</b>"; icon: "../images/dropdownSend.png" }
|
||||||
// ListElement { name: "<b>Find similar transactions</b>"; icon: "../images/dropdownSearch.png" }
|
// ListElement { name: "<b>Find similar transactions</b>"; icon: "../images/dropdownSearch.png" }
|
||||||
ListElement { name: "<b>Remove from address book</b>"; icon: "../images/dropdownDel.png" }
|
ListElement { name: "<b>Remove from address book</b>"; icon: "../images/dropdownDel.png" }
|
||||||
}
|
}
|
||||||
|
|
|
@ -216,7 +216,7 @@ ListView {
|
||||||
id: dropModel
|
id: dropModel
|
||||||
ListElement { name: "<b>Copy address to clipboard</b>"; icon: "../images/dropdownCopy.png" }
|
ListElement { name: "<b>Copy address to clipboard</b>"; icon: "../images/dropdownCopy.png" }
|
||||||
ListElement { name: "<b>Add to address book</b>"; icon: "../images/dropdownAdd.png" }
|
ListElement { name: "<b>Add to address book</b>"; icon: "../images/dropdownAdd.png" }
|
||||||
ListElement { name: "<b>Send to same destination</b>"; icon: "../images/dropdownSend.png" }
|
ListElement { name: "<b>Send to this address</b>"; icon: "../images/dropdownSend.png" }
|
||||||
ListElement { name: "<b>Find similar transactions</b>"; icon: "../images/dropdownSearch.png" }
|
ListElement { name: "<b>Find similar transactions</b>"; icon: "../images/dropdownSearch.png" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -443,7 +443,7 @@ ListView {
|
||||||
id: dropModel
|
id: dropModel
|
||||||
ListElement { name: "<b>Copy address to clipboard</b>"; icon: "../images/dropdownCopy.png" }
|
ListElement { name: "<b>Copy address to clipboard</b>"; icon: "../images/dropdownCopy.png" }
|
||||||
ListElement { name: "<b>Add to address book</b>"; icon: "../images/dropdownAdd.png" }
|
ListElement { name: "<b>Add to address book</b>"; icon: "../images/dropdownAdd.png" }
|
||||||
ListElement { name: "<b>Send to same destination</b>"; icon: "../images/dropdownSend.png" }
|
ListElement { name: "<b>Send to this address</b>"; icon: "../images/dropdownSend.png" }
|
||||||
ListElement { name: "<b>Find similar transactions</b>"; icon: "../images/dropdownSearch.png" }
|
ListElement { name: "<b>Find similar transactions</b>"; icon: "../images/dropdownSearch.png" }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -180,7 +180,7 @@ Item {
|
||||||
|
|
||||||
// Workaround for translations in listElements. All translated strings needs to be listed in this file.
|
// Workaround for translations in listElements. All translated strings needs to be listed in this file.
|
||||||
property string stringCopy: qsTr("<b>Copy address to clipboard</b>") + translationManager.emptyString
|
property string stringCopy: qsTr("<b>Copy address to clipboard</b>") + translationManager.emptyString
|
||||||
property string stringSend: qsTr("<b>Send to same destination</b>") + translationManager.emptyString
|
property string stringSend: qsTr("<b>Send to this address</b>") + translationManager.emptyString
|
||||||
property string stringFind: qsTr("<b>Find similar transactions</b>") + translationManager.emptyString
|
property string stringFind: qsTr("<b>Find similar transactions</b>") + translationManager.emptyString
|
||||||
property string stringRemove: qsTr("<b>Remove from address book</b>") + translationManager.emptyString
|
property string stringRemove: qsTr("<b>Remove from address book</b>") + translationManager.emptyString
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue