Added missing Receive/Settings/Sign/Transfer translations

pull/2/head
Roy Jacobs 7 years ago
parent 1a1a7a991b
commit a2f01ea541

@ -241,7 +241,7 @@ Rectangle {
shadowPressedColor: "#B32D00" shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C" releasedColor: "#FF6C3C"
pressedColor: "#FF4304" pressedColor: "#FF4304"
text: qsTr("Generate") text: qsTr("Generate") + translationManager.emptyString;
anchors.right: parent.right anchors.right: parent.right
onClicked: { onClicked: {
appWindow.persistentSettings.payment_id = appWindow.currentWallet.generatePaymentId(); appWindow.persistentSettings.payment_id = appWindow.currentWallet.generatePaymentId();
@ -379,7 +379,7 @@ Rectangle {
id: qrMenu id: qrMenu
title: "QrCode" title: "QrCode"
MenuItem { MenuItem {
text: qsTr("Save As") text: qsTr("Save As") + translationManager.emptyString;
onTriggered: qrFileDialog.open() onTriggered: qrFileDialog.open()
} }
} }

@ -117,7 +117,7 @@ Rectangle {
shadowPressedColor: "#B32D00" shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C" releasedColor: "#FF6C3C"
pressedColor: "#FF4304" pressedColor: "#FF4304"
text: qsTr("Show seed") text: qsTr("Show seed") + translationManager.emptyString
Layout.alignment: Qt.AlignRight Layout.alignment: Qt.AlignRight
onClicked: { onClicked: {
settingsPasswordDialog.open(); settingsPasswordDialog.open();
@ -225,7 +225,7 @@ Rectangle {
Layout.preferredWidth: 200 Layout.preferredWidth: 200
Layout.fillWidth: true Layout.fillWidth: true
text: (daemonAddress !== undefined) ? daemonAddress[0] : "" text: (daemonAddress !== undefined) ? daemonAddress[0] : ""
placeholderText: qsTr("Hostname / IP") placeholderText: qsTr("Hostname / IP") + translationManager.emptyString
} }
@ -234,7 +234,7 @@ Rectangle {
Layout.preferredWidth: 100 Layout.preferredWidth: 100
Layout.fillWidth: true Layout.fillWidth: true
text: (daemonAddress !== undefined) ? daemonAddress[1] : "18081" text: (daemonAddress !== undefined) ? daemonAddress[1] : "18081"
placeholderText: qsTr("Port") placeholderText: qsTr("Port") + translationManager.emptyString
} }
} }
@ -253,7 +253,7 @@ Rectangle {
Layout.preferredWidth: 100 Layout.preferredWidth: 100
Layout.fillWidth: true Layout.fillWidth: true
text: persistentSettings.daemonUsername text: persistentSettings.daemonUsername
placeholderText: qsTr("Username") placeholderText: qsTr("Username") + translationManager.emptyString
} }
@ -262,7 +262,7 @@ Rectangle {
Layout.preferredWidth: 100 Layout.preferredWidth: 100
Layout.fillWidth: true Layout.fillWidth: true
text: persistentSettings.daemonPassword text: persistentSettings.daemonPassword
placeholderText: qsTr("Password") placeholderText: qsTr("Password") + translationManager.emptyString
echoMode: TextInput.Password echoMode: TextInput.Password
} }
@ -400,7 +400,7 @@ Rectangle {
id: daemonConsolePopup id: daemonConsolePopup
height:500 height:500
width:800 width:800
title: qsTr("Daemon log") title: qsTr("Daemon log") + translationManager.emptyString
onAccepted: { onAccepted: {
close(); close();
} }

@ -192,7 +192,7 @@ Rectangle {
FileDialog { FileDialog {
id: signFileDialog id: signFileDialog
title: "Please choose a file to sign" title: qsTr("Please choose a file to sign") + translationManager.emptyString;
folder: "file://" folder: "file://"
nameFilters: [ "*"] nameFilters: [ "*"]
@ -377,7 +377,7 @@ Rectangle {
FileDialog { FileDialog {
id: verifyFileDialog id: verifyFileDialog
title: "Please choose a file to verify" title: qsTr("Please choose a file to verify") + translationManager.emptyString;
folder: "file://" folder: "file://"
nameFilters: [ "*"] nameFilters: [ "*"]

@ -41,7 +41,7 @@ Rectangle {
signal sweepUnmixableClicked() signal sweepUnmixableClicked()
color: "#F0EEEE" color: "#F0EEEE"
property string startLinkText: "<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>" property string startLinkText: qsTr("<style type='text/css'>a {text-decoration: none; color: #FF6C3C; font-size: 14px;}</style><font size='2'> (</font><a href='#'>Start daemon</a><font size='2'>)</font>") + translationManager.emptyString
property bool showAdvanced: false property bool showAdvanced: false
function scaleValueToMixinCount(scaleValue) { function scaleValueToMixinCount(scaleValue) {
@ -462,7 +462,7 @@ Rectangle {
Label { Label {
id: costLabel id: costLabel
fontSize: 14 fontSize: 14
text: qsTr("Transaction cost") text: qsTr("Transaction cost") + translationManager.emptyString
anchors.right: parent.right anchors.right: parent.right
} }
} }
@ -581,7 +581,7 @@ Rectangle {
//SignTxDialog //SignTxDialog
FileDialog { FileDialog {
id: signTxDialog id: signTxDialog
title: "Please choose a file" title: qsTr("Please choose a file") + translationManager.emptyString
folder: "file://" +moneroAccountsDir folder: "file://" +moneroAccountsDir
nameFilters: [ "Unsigned transfers (*)"] nameFilters: [ "Unsigned transfers (*)"]
@ -642,7 +642,7 @@ Rectangle {
//SignTxDialog //SignTxDialog
FileDialog { FileDialog {
id: submitTxDialog id: submitTxDialog
title: "Please choose a file" title: qsTr("Please choose a file") + translationManager.emptyString
folder: "file://" +moneroAccountsDir folder: "file://" +moneroAccountsDir
nameFilters: [ "signed transfers (*)"] nameFilters: [ "signed transfers (*)"]