Manager: Fix another broken translation

This commit is contained in:
Alexander Babikov
2025-08-22 15:49:29 +05:00
parent dd225c2903
commit e0070c3400

View File

@@ -810,7 +810,7 @@ VMManagerMain::backgroundUpdateCheckComplete(const UpdateCheck::UpdateResult &re
qDebug() << "Check complete: update available?" << result.updateAvailable;
if (result.updateAvailable) {
auto type = result.channel == UpdateCheck::UpdateChannel::CI ? tr("build") : tr("version");
const auto updateMessage = QString("An update to 86Box is available: %1 %2").arg(type, result.latestVersion);
const auto updateMessage = tr("An update to 86Box is available: %1 %2").arg(type, result.latestVersion);
emit updateStatusLeft(updateMessage);
}
}