qml: small change to some qsTr() strings to reuse existing translations
not all ":" suffixes are removed, only the ones where this allows reusing translations
This commit is contained in:
@@ -40,7 +40,7 @@ Pane {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: qsTr('You can send:')
|
text: qsTr('You can send') + ':'
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -49,7 +49,7 @@ Pane {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: qsTr('You can receive:')
|
text: qsTr('You can receive') + ':'
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -37,21 +37,21 @@ Pane {
|
|||||||
text: qsTr('On-chain')
|
text: qsTr('On-chain')
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
text: qsTr('Network:');
|
text: qsTr('Network') + ':'
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
text: Network.networkName
|
text: Network.networkName
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
text: qsTr('Status:');
|
text: qsTr('Status') + ':'
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
text: Network.status
|
text: Network.status
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
text: qsTr('Server:');
|
text: qsTr('Server') + ':'
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
@@ -165,7 +165,7 @@ Pane {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: Config.useGossip ? qsTr('Gossip:') : qsTr('Trampoline:')
|
text: (Config.useGossip ? qsTr('Gossip') : qsTr('Trampoline')) + ':'
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
ColumnLayout {
|
ColumnLayout {
|
||||||
@@ -201,7 +201,7 @@ Pane {
|
|||||||
}
|
}
|
||||||
|
|
||||||
Label {
|
Label {
|
||||||
text: qsTr('Proxy:');
|
text: qsTr('Proxy') + ':'
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ Item {
|
|||||||
|
|
||||||
Label {
|
Label {
|
||||||
font.pixelSize: constants.fontSizeXLarge
|
font.pixelSize: constants.fontSizeXLarge
|
||||||
text: qsTr('Balance:')
|
text: qsTr('Balance') + ':'
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -79,7 +79,7 @@ Item {
|
|||||||
source: '../../../icons/lightning.png'
|
source: '../../../icons/lightning.png'
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
text: qsTr('Lightning:')
|
text: qsTr('Lightning') + ':'
|
||||||
font.pixelSize: constants.fontSizeSmall
|
font.pixelSize: constants.fontSizeSmall
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
@@ -106,7 +106,7 @@ Item {
|
|||||||
source: '../../../icons/bitcoin.png'
|
source: '../../../icons/bitcoin.png'
|
||||||
}
|
}
|
||||||
Label {
|
Label {
|
||||||
text: qsTr('On-chain:')
|
text: qsTr('On-chain') + ':'
|
||||||
font.pixelSize: constants.fontSizeSmall
|
font.pixelSize: constants.fontSizeSmall
|
||||||
color: Material.accentColor
|
color: Material.accentColor
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user