Update palladiumgui.cpp

This commit is contained in:
NotRin7
2025-11-19 21:31:38 +01:00
committed by GitHub
parent 0644af1003
commit 3a6a2fcb32

View File

@@ -1591,7 +1591,7 @@ void PalladiumGUI::onUpdateResult(QNetworkReply* reply)
updateAlertWidget->setStyleSheet("background-color: #d9534f; color: white; border-radius: 0px;");
updateAlertWidget->setMaximumHeight(50);
QLabel *label = new QLabel(tr("Eine neue Version von Palladium ist verfügbar! (%1)").arg(remoteVersionStr), updateAlertWidget);
QLabel *label = new QLabel(tr("A new update is available! (%1)").arg(remoteVersionStr), updateAlertWidget);
label->setStyleSheet("font-weight: bold; border: none; background: transparent; color: white;");
QPushButton *btn = new QPushButton(tr("Download"), updateAlertWidget);
@@ -1620,4 +1620,4 @@ void PalladiumGUI::openUpdateLink()
if (!latestVersionUrl.isEmpty()) {
QDesktopServices::openUrl(QUrl(latestVersionUrl));
}
}
}