diff options
| author | Riccardo Spagni <ric@spagni.net> | 2017-04-24 11:38:07 +0200 |
|---|---|---|
| committer | Riccardo Spagni <ric@spagni.net> | 2017-04-24 11:38:07 +0200 |
| commit | dd7732ce0c2b13f227cb32fb544fe8ee90c30850 (patch) | |
| tree | af0a79d33dfdf423248b41b3be80f6c7a100c5b9 | |
| parent | c750ca95076ef3a2953994817e522e415c54a1d0 (diff) | |
| parent | e2bfe25b9d778c94efb9b6331698565bc8efca29 (diff) | |
| download | monzero-gui-dd7732ce0c2b13f227cb32fb544fe8ee90c30850.tar.gz monzero-gui-dd7732ce0c2b13f227cb32fb544fe8ee90c30850.tar.xz monzero-gui-dd7732ce0c2b13f227cb32fb544fe8ee90c30850.zip | |
Merge pull request #685
e2bfe25 AddressBook menu improvment: Send to this address (Jonathan Cross)
| -rw-r--r-- | components/AddressBookTable.qml | 2 | ||||
| -rw-r--r-- | components/DashboardTable.qml | 2 | ||||
| -rw-r--r-- | components/HistoryTable.qml | 2 | ||||
| -rw-r--r-- | components/TableDropdown.qml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/components/AddressBookTable.qml b/components/AddressBookTable.qml index b8de57a9..abf72371 100644 --- a/components/AddressBookTable.qml +++ b/components/AddressBookTable.qml @@ -122,7 +122,7 @@ ListView { ListModel { id: dropModel 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>Remove from address book</b>"; icon: "../images/dropdownDel.png" } } diff --git a/components/DashboardTable.qml b/components/DashboardTable.qml index ad0b57b6..dc9fbe6d 100644 --- a/components/DashboardTable.qml +++ b/components/DashboardTable.qml @@ -216,7 +216,7 @@ ListView { id: dropModel 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>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" } } diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index f4115435..933c606c 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -443,7 +443,7 @@ ListView { id: dropModel 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>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" } } diff --git a/components/TableDropdown.qml b/components/TableDropdown.qml index 0a1148df..699968e3 100644 --- a/components/TableDropdown.qml +++ b/components/TableDropdown.qml @@ -180,7 +180,7 @@ Item { // 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 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 stringRemove: qsTr("<b>Remove from address book</b>") + translationManager.emptyString |
