1
0

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:
SomberNight
2023-04-17 19:52:54 +00:00
parent 27ce8ba241
commit 5c83327eb0
3 changed files with 10 additions and 10 deletions

View File

@@ -37,21 +37,21 @@ Pane {
text: qsTr('On-chain')
}
Label {
text: qsTr('Network:');
text: qsTr('Network') + ':'
color: Material.accentColor
}
Label {
text: Network.networkName
}
Label {
text: qsTr('Status:');
text: qsTr('Status') + ':'
color: Material.accentColor
}
Label {
text: Network.status
}
Label {
text: qsTr('Server:');
text: qsTr('Server') + ':'
color: Material.accentColor
}
Label {
@@ -165,7 +165,7 @@ Pane {
}
Label {
text: Config.useGossip ? qsTr('Gossip:') : qsTr('Trampoline:')
text: (Config.useGossip ? qsTr('Gossip') : qsTr('Trampoline')) + ':'
color: Material.accentColor
}
ColumnLayout {
@@ -201,7 +201,7 @@ Pane {
}
Label {
text: qsTr('Proxy:');
text: qsTr('Proxy') + ':'
color: Material.accentColor
}
Label {