aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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