mirror of
https://github.com/86Box/86Box.git
synced 2026-02-23 18:08:20 -07:00
Move the trailing space in the "Disk %1: " string out of translations
This commit is contained in:
@@ -713,7 +713,7 @@ VMManagerSystem::setupVars()
|
||||
diskSizeFinal = QString::number(diskSizeRaw);
|
||||
}
|
||||
// Only prefix each disk when there are multiple disks
|
||||
QString diskNumberDisplay = disks.count() > 1 ? tr("Disk %1: ").arg(disk_number) : "";
|
||||
QString diskNumberDisplay = disks.count() > 1 ? tr("Disk %1:").arg(disk_number).append(" ") : "";
|
||||
new_disk_display.append(QString("%1%2 %3 (%4)").arg(diskNumberDisplay, diskSizeFinal, unit, bus_type.toUpper()));
|
||||
}
|
||||
if (new_disk_display.isEmpty()) {
|
||||
|
||||
Reference in New Issue
Block a user