add missing TranslationManager.emptyString

This commit is contained in:
selsta
2019-04-16 16:35:30 +02:00
parent d2c47606ca
commit 15a5f76334
21 changed files with 765 additions and 65 deletions

View File

@@ -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
}
}