Fix untranslated strings

This commit is contained in:
nelsonhef
2025-08-11 09:45:35 -03:00
parent 42fa1dbe54
commit e70379857d
3 changed files with 3 additions and 3 deletions

View File

@@ -26,7 +26,7 @@ UpdateDetails::
UpdateDetails(const UpdateCheck::UpdateResult &updateResult, QWidget *parent) : QDialog(parent), ui(new Ui::UpdateDetails)
{
ui->setupUi(this);
ui->updateTitle->setText("<b>An update to 86Box is available!</b>");
ui->updateTitle->setText(tr(("<b>An update to 86Box is available!</b>"));
QString currentVersionText;
QString releaseType = updateResult.channel == UpdateCheck::UpdateChannel::Stable ? tr("version") : tr("build");
if(!updateResult.currentVersion.isEmpty()) {