Merge pull request #550

c45cc3d enabled translations in some places (kenshi84)
6364530 updated Japanese translation (kenshi84)
pull/2/head
Riccardo Spagni 7 years ago
commit b0d0974561
No known key found for this signature in database
GPG Key ID: 55432DF31CCD4FCD

@ -105,7 +105,7 @@ Window {
shadowPressedColor: "#B32D00" shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C" releasedColor: "#FF6C3C"
pressedColor: "#FF4304" pressedColor: "#FF4304"
text: qsTr("Close") text: qsTr("Close") + translationManager.emptyString
onClicked: { onClicked: {
root.close() root.close()
root.accepted() root.accepted()
@ -116,7 +116,7 @@ Window {
MoneroComponents.LineEdit { MoneroComponents.LineEdit {
id: sendCommandText id: sendCommandText
width: 300 width: 300
placeholderText: qsTr("command + enter (e.g help)") placeholderText: qsTr("command + enter (e.g help)") + translationManager.emptyString
onAccepted: { onAccepted: {
if(text.length > 0) if(text.length > 0)
daemonManager.sendCommand(text,currentWallet.testnet); daemonManager.sendCommand(text,currentWallet.testnet);

@ -82,7 +82,7 @@ Row {
font.family: "Arial" font.family: "Arial"
font.pixelSize: 12 font.pixelSize: 12
color: "#545454" color: "#545454"
text: qsTr("Network status") text: qsTr("Network status") + translationManager.emptyString
} }
Text { Text {

@ -144,7 +144,7 @@ Window {
shadowPressedColor: "#B32D00" shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C" releasedColor: "#FF6C3C"
pressedColor: "#FF4304" pressedColor: "#FF4304"
text: qsTr("Cancel") text: qsTr("Cancel") + translationManager.emptyString
KeyNavigation.tab: passwordInput KeyNavigation.tab: passwordInput
onClicked: { onClicked: {
root.close() root.close()

@ -109,7 +109,7 @@ Window {
shadowPressedColor: "#B32D00" shadowPressedColor: "#B32D00"
releasedColor: "#FF6C3C" releasedColor: "#FF6C3C"
pressedColor: "#FF4304" pressedColor: "#FF4304"
text: qsTr("Cancel") text: qsTr("Cancel") + translationManager.emptyString
onClicked: { onClicked: {
root.close() root.close()
root.rejected() root.rejected()

@ -244,7 +244,7 @@ Rectangle {
anchors.top: searchLine.bottom //descriptionLine.bottom anchors.top: searchLine.bottom //descriptionLine.bottom
anchors.leftMargin: 17 anchors.leftMargin: 17
anchors.topMargin: 17 anchors.topMargin: 17
text: qsTr("To") text: qsTr("To") + translationManager.emptyString
fontSize: 14 fontSize: 14
tipText: qsTr("<b>Tip tekst test</b>") + translationManager.emptyString tipText: qsTr("<b>Tip tekst test</b>") + translationManager.emptyString
} }
@ -270,7 +270,7 @@ Rectangle {
anchors.left: toDatePicker.right anchors.left: toDatePicker.right
anchors.leftMargin: 17 anchors.leftMargin: 17
width: 60 width: 60
text: qsTr("Filter") text: qsTr("Filter") + translationManager.emptyString
shadowReleasedColor: "#4D0051" shadowReleasedColor: "#4D0051"
shadowPressedColor: "#2D002F" shadowPressedColor: "#2D002F"
releasedColor: "#6B0072" releasedColor: "#6B0072"
@ -307,7 +307,7 @@ Rectangle {
CheckBox { CheckBox {
id: advancedFilteringCheckBox id: advancedFilteringCheckBox
text: qsTr("Advanced filtering") text: qsTr("Advanced filtering") + translationManager.emptyString
anchors.left: filterButton.right anchors.left: filterButton.right
anchors.bottom: filterButton.bottom anchors.bottom: filterButton.bottom
anchors.leftMargin: 17 anchors.leftMargin: 17
@ -393,7 +393,7 @@ Rectangle {
anchors.leftMargin: 17 anchors.leftMargin: 17
anchors.topMargin: 17 anchors.topMargin: 17
width: 156 width: 156
text: qsTr("To") text: qsTr("To") + translationManager.emptyString
fontSize: 14 fontSize: 14
tipText: qsTr("<b>Tip tekst test</b>") + translationManager.emptyString tipText: qsTr("<b>Tip tekst test</b>") + translationManager.emptyString
} }

@ -69,7 +69,7 @@ Rectangle {
Label { Label {
id: soloTitleLabel id: soloTitleLabel
fontSize: 24 fontSize: 24
text: qsTr("Solo mining") text: qsTr("Solo mining") + translationManager.emptyString
} }
Label { Label {

File diff suppressed because it is too large Load Diff

@ -200,7 +200,7 @@ ColumnLayout {
id: addressLine id: addressLine
Layout.maximumWidth: 600 Layout.maximumWidth: 600
Layout.minimumWidth: 200 Layout.minimumWidth: 200
placeholderText: qsTr("Account address (public)") placeholderText: qsTr("Account address (public)") + translationManager.emptyString
onTextUpdated: checkNextButton() onTextUpdated: checkNextButton()
} }
LineEdit { LineEdit {
@ -208,7 +208,7 @@ ColumnLayout {
id: viewKeyLine id: viewKeyLine
Layout.maximumWidth: 600 Layout.maximumWidth: 600
Layout.minimumWidth: 200 Layout.minimumWidth: 200
placeholderText: qsTr("View key (private)") placeholderText: qsTr("View key (private)") + translationManager.emptyString
onTextUpdated: checkNextButton() onTextUpdated: checkNextButton()
} }
@ -217,7 +217,7 @@ ColumnLayout {
Layout.maximumWidth: 600 Layout.maximumWidth: 600
Layout.minimumWidth: 200 Layout.minimumWidth: 200
id: spendKeyLine id: spendKeyLine
placeholderText: qsTr("Spend key (private)") placeholderText: qsTr("Spend key (private)") + translationManager.emptyString
onTextUpdated: checkNextButton() onTextUpdated: checkNextButton()
} }
} }
@ -229,7 +229,7 @@ ColumnLayout {
Layout.fillWidth: true Layout.fillWidth: true
Layout.maximumWidth: 600 Layout.maximumWidth: 600
Layout.minimumWidth: 200 Layout.minimumWidth: 200
placeholderText: qsTr("Restore height (optional)") placeholderText: qsTr("Restore height (optional)") + translationManager.emptyString
validator: IntValidator { validator: IntValidator {
bottom:0 bottom:0
} }

@ -41,7 +41,7 @@ Column {
font.pixelSize: 16 font.pixelSize: 16
anchors.margins: 8 anchors.margins: 8
font.bold:true font.bold:true
text: qsTr("Enter your 25 word mnemonic seed") text: qsTr("Enter your 25 word mnemonic seed") + translationManager.emptyString
color: "#BABABA" color: "#BABABA"
visible: !memoTextInput.text/* && !parent.focus*/ visible: !memoTextInput.text/* && !parent.focus*/
} }