aboutsummaryrefslogtreecommitdiff
path: root/components/LineEditMulti.qml
diff options
context:
space:
mode:
authorluigi1111 <luigi1111w@gmail.com>2019-04-16 16:54:17 -0400
committerluigi1111 <luigi1111w@gmail.com>2019-04-16 16:54:17 -0400
commit10926644bfe049b3c7b1dcd9b274a3a79cfa1e94 (patch)
treeb3b57df2159b0cfbb611b1adc1e57670b977c30c /components/LineEditMulti.qml
parente760d33dad2ce3a0a1565f957c3232007ee4dcce (diff)
parent15a5f763349c6e3b3d3570fd4de6a83a03d726ad (diff)
downloadmonzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.tar.gz
monzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.tar.xz
monzero-gui-10926644bfe049b3c7b1dcd9b274a3a79cfa1e94.zip
Merge pull request #2088
15a5f76 add missing TranslationManager.emptyString (selsta)
Diffstat (limited to 'components/LineEditMulti.qml')
-rw-r--r--components/LineEditMulti.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/components/LineEditMulti.qml b/components/LineEditMulti.qml
index d251fe26..e28d9e75 100644
--- a/components/LineEditMulti.qml
+++ b/components/LineEditMulti.qml
@@ -134,7 +134,7 @@ ColumnLayout {
MoneroComponents.LabelButton {
id: copyButtonId
visible: copyButton && input.text !== ""
- text: qsTr("Copy")
+ text: qsTr("Copy") + translationManager.emptyString
onClicked: {
if (input.text.length > 0) {
console.log("Copied to clipboard");
@@ -147,7 +147,7 @@ ColumnLayout {
MoneroComponents.LabelButton {
id: pasteButtonId
onClicked: item.onPaste(clipboard.text())
- text: qsTr("Paste")
+ text: qsTr("Paste") + translationManager.emptyString
visible: pasteButton
}
}