mirror of
https://github.com/monero-project/monero-gui.git
synced 2025-01-19 16:13:55 +02:00
fix strings not marked as translatable
This commit is contained in:
parent
3aa6da058a
commit
6dcd2b76fa
@ -151,7 +151,7 @@ ListView {
|
|||||||
anchors.leftMargin: 18 * scaleRatio
|
anchors.leftMargin: 18 * scaleRatio
|
||||||
font.family: MoneroComponents.Style.fontLight.name
|
font.family: MoneroComponents.Style.fontLight.name
|
||||||
font.pixelSize: 14 * scaleRatio
|
font.pixelSize: 14 * scaleRatio
|
||||||
text: isOut ? "Sent" : "Received"
|
text: isOut ? qsTr("Sent") + translationManager.emptyString : qsTr("Received") + translationManager.emptyString
|
||||||
color: "#808080"
|
color: "#808080"
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -218,7 +218,7 @@ ListView {
|
|||||||
address = TxUtils.destinationsToAddress(destinations);
|
address = TxUtils.destinationsToAddress(destinations);
|
||||||
if(address){
|
if(address){
|
||||||
var truncated = TxUtils.addressTruncate(address);
|
var truncated = TxUtils.addressTruncate(address);
|
||||||
return "To " + truncated;
|
return qsTr("To ") + translationManager.emptyString + truncated;
|
||||||
} else {
|
} else {
|
||||||
return "Unknown recipient";
|
return "Unknown recipient";
|
||||||
}
|
}
|
||||||
@ -293,7 +293,7 @@ ListView {
|
|||||||
anchors.left: parent.left
|
anchors.left: parent.left
|
||||||
anchors.leftMargin: 30 * scaleRatio
|
anchors.leftMargin: 30 * scaleRatio
|
||||||
|
|
||||||
labelHeader: "Transaction ID"
|
labelHeader: QsTr("Transaction ID") + translationManager.emptyString
|
||||||
labelValue: hash.substring(0, 18) + "..."
|
labelValue: hash.substring(0, 18) + "..."
|
||||||
copyValue: hash
|
copyValue: hash
|
||||||
}
|
}
|
||||||
|
@ -151,7 +151,7 @@ Rectangle {
|
|||||||
RowLayout {
|
RowLayout {
|
||||||
LineEdit {
|
LineEdit {
|
||||||
id: signFileLine
|
id: signFileLine
|
||||||
labelText: "Message from file"
|
labelText: qsTr("Message from file") + translationManager.emptyString
|
||||||
placeholderText: qsTr("Path to file") + translationManager.emptyString;
|
placeholderText: qsTr("Path to file") + translationManager.emptyString;
|
||||||
readOnly: false
|
readOnly: false
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
@ -218,7 +218,7 @@ Rectangle {
|
|||||||
LineEdit {
|
LineEdit {
|
||||||
id: verifyMessageLine
|
id: verifyMessageLine
|
||||||
Layout.fillWidth: true
|
Layout.fillWidth: true
|
||||||
labelText: qsTr("Verify message")
|
labelText: qsTr("Verify message") + translationManager.emptyString;
|
||||||
placeholderText: qsTr("Message to verify") + translationManager.emptyString;
|
placeholderText: qsTr("Message to verify") + translationManager.emptyString;
|
||||||
readOnly: false
|
readOnly: false
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user