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: "Copy address to clipboard"; icon: "../images/dropdownCopy.png" }
- ListElement { name: "Send to same destination"; icon: "../images/dropdownSend.png" }
+ ListElement { name: "Send to this address"; icon: "../images/dropdownSend.png" }
// ListElement { name: "Find similar transactions"; icon: "../images/dropdownSearch.png" }
ListElement { name: "Remove from address book"; 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: "Copy address to clipboard"; icon: "../images/dropdownCopy.png" }
ListElement { name: "Add to address book"; icon: "../images/dropdownAdd.png" }
- ListElement { name: "Send to same destination"; icon: "../images/dropdownSend.png" }
+ ListElement { name: "Send to this address"; icon: "../images/dropdownSend.png" }
ListElement { name: "Find similar transactions"; 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: "Copy address to clipboard"; icon: "../images/dropdownCopy.png" }
ListElement { name: "Add to address book"; icon: "../images/dropdownAdd.png" }
- ListElement { name: "Send to same destination"; icon: "../images/dropdownSend.png" }
+ ListElement { name: "Send to this address"; icon: "../images/dropdownSend.png" }
ListElement { name: "Find similar transactions"; 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("Copy address to clipboard") + translationManager.emptyString
- property string stringSend: qsTr("Send to same destination") + translationManager.emptyString
+ property string stringSend: qsTr("Send to this address") + translationManager.emptyString
property string stringFind: qsTr("Find similar transactions") + translationManager.emptyString
property string stringRemove: qsTr("Remove from address book") + translationManager.emptyString