diff options
Diffstat (limited to 'components/LineEditMulti.qml')
| -rw-r--r-- | components/LineEditMulti.qml | 4 |
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 } } |
