aboutsummaryrefslogtreecommitdiff
path: root/components
diff options
context:
space:
mode:
authorJonathan Cross <jcross@gmail.com>2017-04-18 18:15:30 +0200
committerJonathan Cross <jcross@gmail.com>2017-04-18 18:15:30 +0200
commite2bfe25b9d778c94efb9b6331698565bc8efca29 (patch)
tree6b4322ea3d85650899af790fed36b52717d796b8 /components
parent4ca35af11ac8b41192bdb373216513e524ee4cb0 (diff)
downloadmonzero-gui-e2bfe25b9d778c94efb9b6331698565bc8efca29.tar.gz
monzero-gui-e2bfe25b9d778c94efb9b6331698565bc8efca29.tar.xz
monzero-gui-e2bfe25b9d778c94efb9b6331698565bc8efca29.zip
AddressBook menu improvment: Send to this address
Diffstat (limited to 'components')
-rw-r--r--components/AddressBookTable.qml2
-rw-r--r--components/DashboardTable.qml2
-rw-r--r--components/HistoryTable.qml2
-rw-r--r--components/TableDropdown.qml2
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