mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-18 08:54:15 +01:00
OP-1395 - Change labels for better readability remove trailing spaces from translated strings
This commit is contained in:
parent
ca12105527
commit
fd307479e8
@ -94,16 +94,16 @@ Rectangle {
|
||||
spacing: 10
|
||||
Text {
|
||||
id: totalFlights
|
||||
text: "<b>" + qsTr("Flights recorded: ") + "</b>" + (logStatus.Flight + 1)
|
||||
text: "<b>" + qsTr("Flights recorded:") + "</b> " + (logStatus.Flight + 1)
|
||||
}
|
||||
Text {
|
||||
id: totalSlots
|
||||
text: "<b>" + qsTr("Slots used (free): ") + "</b>" +
|
||||
logStatus.UsedSlots + " (" + logStatus.FreeSlots + ")"
|
||||
text: "<b>" + qsTr("Slots used/free:") + "</b> " +
|
||||
logStatus.UsedSlots + "/" + logStatus.FreeSlots
|
||||
}
|
||||
Text {
|
||||
id: totalEntries
|
||||
text: "<b>" + qsTr("Entries downloaded: ") + "</b>" + logManager.logEntriesCount
|
||||
text: "<b>" + qsTr("Entries downloaded:") + "</b> " + logManager.logEntriesCount
|
||||
}
|
||||
Rectangle {
|
||||
Layout.fillHeight: true
|
||||
|
Loading…
x
Reference in New Issue
Block a user