From 08928871ccdccbe7083952a2dd4d600dabd854b6 Mon Sep 17 00:00:00 2001 From: DanielSvoboda Date: Sat, 28 Sep 2024 00:57:02 -0300 Subject: [PATCH] Release_Nightly --- src/common/config.cpp | 15 +++++++-- src/qt_gui/check_update.cpp | 47 ++++++++++++++++----------- src/qt_gui/settings_dialog.cpp | 11 ++++++- src/qt_gui/settings_dialog.ui | 56 ++++++++++++++++++++------------ src/qt_gui/translations/ar.ts | 20 ++++++------ src/qt_gui/translations/da_DK.ts | 20 ++++++------ src/qt_gui/translations/de.ts | 20 ++++++------ src/qt_gui/translations/el.ts | 20 ++++++------ src/qt_gui/translations/en.ts | 20 ++++++------ src/qt_gui/translations/es_ES.ts | 20 ++++++------ src/qt_gui/translations/fa_IR.ts | 20 ++++++------ src/qt_gui/translations/fi.ts | 20 ++++++------ src/qt_gui/translations/fr.ts | 20 ++++++------ src/qt_gui/translations/hu_HU.ts | 20 ++++++------ src/qt_gui/translations/id.ts | 20 ++++++------ src/qt_gui/translations/it.ts | 20 ++++++------ src/qt_gui/translations/ja_JP.ts | 20 ++++++------ src/qt_gui/translations/ko_KR.ts | 20 ++++++------ src/qt_gui/translations/lt_LT.ts | 20 ++++++------ src/qt_gui/translations/nb.ts | 20 ++++++------ src/qt_gui/translations/nl.ts | 20 ++++++------ src/qt_gui/translations/pl_PL.ts | 20 ++++++------ src/qt_gui/translations/pt_BR.ts | 20 ++++++------ src/qt_gui/translations/ro_RO.ts | 20 ++++++------ src/qt_gui/translations/ru_RU.ts | 20 ++++++------ src/qt_gui/translations/sq.ts | 20 ++++++------ src/qt_gui/translations/tr_TR.ts | 20 ++++++------ src/qt_gui/translations/vi_VN.ts | 20 ++++++------ src/qt_gui/translations/zh_CN.ts | 20 ++++++------ src/qt_gui/translations/zh_TW.ts | 20 ++++++------ 30 files changed, 346 insertions(+), 303 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index f130c74a5..4a8effbdf 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -3,6 +3,7 @@ #include #include +#include #include #include // for wstring support #include @@ -37,7 +38,7 @@ static s32 gpuId = -1; // Vulkan physical device index. Set to negative for auto static std::string logFilter; static std::string logType = "async"; static std::string userName = "shadPS4"; -static std::string updateChannel = "stable"; +static std::string updateChannel; static bool useSpecialPad = false; static int specialPadClass = 1; static bool isDebugDump = false; @@ -414,7 +415,11 @@ void load(const std::filesystem::path& path) { logFilter = toml::find_or(general, "logFilter", ""); logType = toml::find_or(general, "logType", "sync"); userName = toml::find_or(general, "userName", "shadPS4"); - updateChannel = toml::find_or(general, "updateChannel", "stable"); + if (Common::isRelease) { + updateChannel = toml::find_or(general, "updateChannel", "Release"); + } else { + updateChannel = toml::find_or(general, "updateChannel", "Nightly"); + } isShowSplash = toml::find_or(general, "showSplash", true); isAutoUpdate = toml::find_or(general, "autoUpdate", false); } @@ -565,7 +570,11 @@ void setDefaultValues() { logFilter = ""; logType = "async"; userName = "shadPS4"; - updateChannel = "stable"; + if (Common::isRelease) { + updateChannel = "Release"; + } else { + updateChannel = "Nightly"; + } useSpecialPad = false; specialPadClass = 1; isDebugDump = false; diff --git a/src/qt_gui/check_update.cpp b/src/qt_gui/check_update.cpp index 571ae6f92..f5e284a26 100644 --- a/src/qt_gui/check_update.cpp +++ b/src/qt_gui/check_update.cpp @@ -22,6 +22,7 @@ #include #include #include +#include #include "check_update.h" using namespace Common::FS; @@ -37,20 +38,27 @@ CheckUpdate::CheckUpdate(const bool showMessage, QWidget* parent) CheckUpdate::~CheckUpdate() {} void CheckUpdate::CheckForUpdates(const bool showMessage) { - QString updateChannel = QString::fromStdString(Config::getUpdateChannel()); + QString updateChannel; QUrl url; - if (updateChannel == "unstable") { - url = QUrl("https://api.github.com/repos/shadps4-emu/shadPS4/releases"); - } else if (updateChannel == "stable") { - url = QUrl("https://api.github.com/repos/shadps4-emu/shadPS4/releases/latest"); - } else { - QMessageBox::warning( - this, tr("Error"), - QString(tr("Invalid update channel: ") + updateChannel + "\n" + - tr("In updateChannel in config.tml file must contain 'stable' or 'unstable'") - .arg(updateChannel))); - return; + bool checkName = true; + while (checkName) { + updateChannel = QString::fromStdString(Config::getUpdateChannel()); + if (updateChannel == "Nightly") { + url = QUrl("https://api.github.com/repos/shadps4-emu/shadPS4/releases"); + checkName = false; + } else if (updateChannel == "Release") { + url = QUrl("https://api.github.com/repos/shadps4-emu/shadPS4/releases/latest"); + checkName = false; + } else { + if (Common::isRelease) { + Config::setUpdateChannel("Release"); + } else { + Config::setUpdateChannel("Nightly"); + } + const auto config_dir = Common::FS::GetUserPath(Common::FS::PathType::UserDir); + Config::save(config_dir / "config.toml"); + } } QNetworkRequest request(url); @@ -88,7 +96,7 @@ void CheckUpdate::CheckForUpdates(const bool showMessage) { #endif QJsonObject jsonObj; - if (updateChannel == "unstable") { + if (updateChannel == "Nightly") { QJsonArray jsonArray = jsonDoc.array(); for (const QJsonValue& value : jsonArray) { jsonObj = value.toObject(); @@ -173,10 +181,13 @@ void CheckUpdate::setupUI(const QString& downloadUrl, const QString& latestDate, titleLayout->addWidget(titleLabel); layout->addLayout(titleLayout); - QString updateText = QString("


" + tr("Current Version") + ":
%1 (%2)
" + - tr("Latest Version") + ": %3 (%4)

" + - tr("Do you want to update?") + "

") - .arg(currentRev, currentDate, latestRev, latestDate); + QString updateChannel = QString::fromStdString(Config::getUpdateChannel()); + + QString updateText = + QString("


" + tr("Update Channel") + ":
" + updateChannel + "
" + + tr("Current Version") + ": %1 (%2)
" + tr("Latest Version") + + ": %3 (%4)

" + tr("Do you want to update?") + "

") + .arg(currentRev, currentDate, latestRev, latestDate); QLabel* updateLabel = new QLabel(updateText, this); layout->addWidget(updateLabel); @@ -196,8 +207,6 @@ void CheckUpdate::setupUI(const QString& downloadUrl, const QString& latestDate, bottomLayout->addWidget(noButton); layout->addLayout(bottomLayout); - QString updateChannel = QString::fromStdString(Config::getUpdateChannel()); - // Don't show changelog button if: // The current version is a pre-release and the version to be downloaded is a release. bool current_isRelease = currentRev.startsWith('v', Qt::CaseInsensitive); diff --git a/src/qt_gui/settings_dialog.cpp b/src/qt_gui/settings_dialog.cpp index 34fafd2f7..e02aeed9e 100644 --- a/src/qt_gui/settings_dialog.cpp +++ b/src/qt_gui/settings_dialog.cpp @@ -5,6 +5,7 @@ #include #include +#include #include "check_update.h" #include "common/logging/backend.h" #include "common/logging/filter.h" @@ -243,7 +244,15 @@ void SettingsDialog::LoadValuesFromConfig() { ui->rdocCheckBox->setChecked(Config::isRdocEnabled()); ui->updateCheckBox->setChecked(Config::autoUpdate()); - ui->updateComboBox->setCurrentText(QString::fromStdString(Config::getUpdateChannel())); + std::string updateChannel = Config::getUpdateChannel(); + if (updateChannel != "Release" && updateChannel != "Nightly") { + if (Common::isRelease) { + updateChannel = "Release"; + } else { + updateChannel = "Nightly"; + } + } + ui->updateComboBox->setCurrentText(QString::fromStdString(updateChannel)); } void SettingsDialog::InitializeEmulatorLanguages() { diff --git a/src/qt_gui/settings_dialog.ui b/src/qt_gui/settings_dialog.ui index 161f4df43..ca71d5ca4 100644 --- a/src/qt_gui/settings_dialog.ui +++ b/src/qt_gui/settings_dialog.ui @@ -290,9 +290,9 @@ - 12 - 115 - 251 + 10 + 130 + 261 22 @@ -300,35 +300,45 @@ Check for Updates at Startup - + 12 - 35 + 30 241 - 28 + 65 - - stable + + Update Channel - - - stable + + + + 12 + 30 + 217 + 28 + - - - - unstable - - + + + Release + + + + + Nightly + + + - 12 - 70 - 241 + 25 + 100 + 215 24 @@ -390,6 +400,12 @@ QSizePolicy::Policy::Expanding + + + 0 + 0 + + diff --git a/src/qt_gui/translations/ar.ts b/src/qt_gui/translations/ar.ts index 85a37cf46..b62125a7a 100644 --- a/src/qt_gui/translations/ar.ts +++ b/src/qt_gui/translations/ar.ts @@ -514,6 +514,11 @@ Check for Updates at Startup تحقق من التحديثات عند بدء التشغيل + + + Update Channel + قناة التحديث + Check for Updates @@ -1124,16 +1129,6 @@ Error خطأ - - - Invalid update channel: - قناة تحديث غير صالحة: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - يجب أن يحتوي updateChannel في ملف config.tml على 'stable' أو 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available تحديث متاح + + + Update Channel + قناة التحديث + Current Version diff --git a/src/qt_gui/translations/da_DK.ts b/src/qt_gui/translations/da_DK.ts index 0813da259..c41b34431 100644 --- a/src/qt_gui/translations/da_DK.ts +++ b/src/qt_gui/translations/da_DK.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Tjek for opdateringer ved start + + + Update Channel + Opdateringskanal + Check for Updates @@ -1124,16 +1129,6 @@ Error Fejl - - - Invalid update channel: - Ugyldig opdateringskanal: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - I updateChannel i config.tml filen skal der være 'stable' eller 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Opdatering tilgængelig + + + Update Channel + Opdateringskanal + Current Version diff --git a/src/qt_gui/translations/de.ts b/src/qt_gui/translations/de.ts index ba34d7788..028f448bc 100644 --- a/src/qt_gui/translations/de.ts +++ b/src/qt_gui/translations/de.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Beim Start nach Updates suchen + + + Update Channel + Update-Kanal + Check for Updates @@ -1124,16 +1129,6 @@ Error Fehler - - - Invalid update channel: - Ungültiger Aktualisierungskanal: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Im updateChannel in der config.tml-Datei muss 'stable' oder 'unstable' enthalten sein - Network error: @@ -1169,6 +1164,11 @@ Update Available Aktualisierung verfügbar + + + Update Channel + Update-Kanal + Current Version diff --git a/src/qt_gui/translations/el.ts b/src/qt_gui/translations/el.ts index ae7a6d8bb..ed3e0336d 100644 --- a/src/qt_gui/translations/el.ts +++ b/src/qt_gui/translations/el.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Έλεγχος για ενημερώσεις κατά την εκκίνηση + + + Update Channel + Κανάλι Ενημέρωσης + Check for Updates @@ -1124,16 +1129,6 @@ Error Σφάλμα - - - Invalid update channel: - Μη έγκυρο κανάλι ενημέρωσης: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Στο updateChannel του αρχείου config.tml πρέπει να περιέχει 'stable' ή 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Διαθέσιμη Ενημέρωση + + + Update Channel + Κανάλι Ενημέρωσης + Current Version diff --git a/src/qt_gui/translations/en.ts b/src/qt_gui/translations/en.ts index 4e62cc11b..b0da5bde2 100644 --- a/src/qt_gui/translations/en.ts +++ b/src/qt_gui/translations/en.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Check for Updates at Startup + + + Update Channel + Update Channel + Check for Updates @@ -1124,16 +1129,6 @@ Error Error - - - Invalid update channel: - Invalid update channel: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Update Available + + + Update Channel + Update Channel + Current Version diff --git a/src/qt_gui/translations/es_ES.ts b/src/qt_gui/translations/es_ES.ts index ee0a9dae9..730346d84 100644 --- a/src/qt_gui/translations/es_ES.ts +++ b/src/qt_gui/translations/es_ES.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Buscar actualizaciones al iniciar + + + Update Channel + Canal de Actualización + Check for Updates @@ -1124,16 +1129,6 @@ Error Error - - - Invalid update channel: - Canal de actualización no válido: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - En updateChannel en el archivo config.tml debe contener 'stable' o 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Actualización disponible + + + Update Channel + Canal de Actualización + Current Version diff --git a/src/qt_gui/translations/fa_IR.ts b/src/qt_gui/translations/fa_IR.ts index 8e3256705..217edb780 100644 --- a/src/qt_gui/translations/fa_IR.ts +++ b/src/qt_gui/translations/fa_IR.ts @@ -514,6 +514,11 @@ Check for Updates at Startup بررسی بروزرسانی هنگام شروع + + + Update Channel + کانال بروزرسانی + Check for Updates @@ -1124,16 +1129,6 @@ Error خطا - - - Invalid update channel: - کانال به روز رسانی نامعتبر: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - در فایل config.tml، updateChannel باید فقط شامل 'stable' یا 'unstable' باشد - Network error: @@ -1169,6 +1164,11 @@ Update Available به روز رسانی موجود است + + + Update Channel + کانال بروزرسانی + Current Version diff --git a/src/qt_gui/translations/fi.ts b/src/qt_gui/translations/fi.ts index d3fcda773..68e47a6b6 100644 --- a/src/qt_gui/translations/fi.ts +++ b/src/qt_gui/translations/fi.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Tarkista päivitykset alussa + + + Update Channel + Päivityskanava + Check for Updates @@ -1124,16 +1129,6 @@ Error Virhe - - - Invalid update channel: - Virheellinen päivityskanava: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - config.tml-tiedoston updateChannelin on sisällettävä 'stable' tai 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Päivitys saatavilla + + + Update Channel + Päivityskanava + Current Version diff --git a/src/qt_gui/translations/fr.ts b/src/qt_gui/translations/fr.ts index 431ea38dc..e47299964 100644 --- a/src/qt_gui/translations/fr.ts +++ b/src/qt_gui/translations/fr.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Vérif. maj au démarrage + + + Update Channel + Canal de Mise à Jour + Check for Updates @@ -1124,16 +1129,6 @@ Error Erreur - - - Invalid update channel: - Canal de mise à jour invalide : - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Dans le fichier config.tml, updateChannel doit contenir 'stable' ou 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Mise à jour disponible + + + Update Channel + Canal de Mise à Jour + Current Version diff --git a/src/qt_gui/translations/hu_HU.ts b/src/qt_gui/translations/hu_HU.ts index 853326bd5..0d0d45262 100644 --- a/src/qt_gui/translations/hu_HU.ts +++ b/src/qt_gui/translations/hu_HU.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Frissítések keresése indításkor + + + Update Channel + Frissítési Csatorna + Check for Updates @@ -1124,16 +1129,6 @@ Error Hiba - - - Invalid update channel: - Érvénytelen frissítési csatorna: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - A config.tml fájlban az updateChannel-nek 'stable' vagy 'unstable' értéket kell tartalmaznia - Network error: @@ -1169,6 +1164,11 @@ Update Available Frissítés elérhető + + + Update Channel + Frissítési Csatorna + Current Version diff --git a/src/qt_gui/translations/id.ts b/src/qt_gui/translations/id.ts index f1002da1d..9efa123fe 100644 --- a/src/qt_gui/translations/id.ts +++ b/src/qt_gui/translations/id.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Periksa pembaruan saat mulai + + + Update Channel + Saluran Pembaruan + Check for Updates @@ -1124,16 +1129,6 @@ Error Kesalahan - - - Invalid update channel: - Saluran pembaruan tidak valid: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Di updateChannel dalam file config.tml harus berisi 'stable' atau 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Pembaruan Tersedia + + + Update Channel + Saluran Pembaruan + Current Version diff --git a/src/qt_gui/translations/it.ts b/src/qt_gui/translations/it.ts index 9ed88ed0c..e3203862b 100644 --- a/src/qt_gui/translations/it.ts +++ b/src/qt_gui/translations/it.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Verifica aggiornamenti all’avvio + + + Update Channel + Canale di Aggiornamento + Check for Updates @@ -1124,16 +1129,6 @@ Error Errore - - - Invalid update channel: - Canale di aggiornamento non valido: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Nel file config.tml, l'updateChannel deve contenere 'stable' o 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Aggiornamento disponibile + + + Update Channel + Canale di Aggiornamento + Current Version diff --git a/src/qt_gui/translations/ja_JP.ts b/src/qt_gui/translations/ja_JP.ts index d48a14458..4e079f1d3 100644 --- a/src/qt_gui/translations/ja_JP.ts +++ b/src/qt_gui/translations/ja_JP.ts @@ -514,6 +514,11 @@ Check for Updates at Startup 起動時に更新確認 + + + Update Channel + アップデートチャネル + Check for Updates @@ -1124,16 +1129,6 @@ Error エラー - - - Invalid update channel: - 無効なアップデートチャネル: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - config.tmlファイルのupdateChannelには「stable」または「unstable」を含める必要があります - Network error: @@ -1169,6 +1164,11 @@ Update Available アップデートがあります + + + Update Channel + アップデートチャネル + Current Version diff --git a/src/qt_gui/translations/ko_KR.ts b/src/qt_gui/translations/ko_KR.ts index 954c070f2..1476a893d 100644 --- a/src/qt_gui/translations/ko_KR.ts +++ b/src/qt_gui/translations/ko_KR.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Check for Updates at Startup + + + Update Channel + Update Channel + Check for Updates @@ -1124,16 +1129,6 @@ Error Error - - - Invalid update channel: - Invalid update channel: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Update Available + + + Update Channel + Update Channel + Current Version diff --git a/src/qt_gui/translations/lt_LT.ts b/src/qt_gui/translations/lt_LT.ts index 09af7e9d6..abf084e0b 100644 --- a/src/qt_gui/translations/lt_LT.ts +++ b/src/qt_gui/translations/lt_LT.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Tikrinti naujinimus paleidus + + + Update Channel + Atnaujinimo Kanalas + Check for Updates @@ -1124,16 +1129,6 @@ Error Klaida - - - Invalid update channel: - Neteisingas atnaujinimo kanalas: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - config.tml faile updateChannel turi būti 'stable' arba 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Prieinama atnaujinimas + + + Update Channel + Atnaujinimo Kanalas + Current Version diff --git a/src/qt_gui/translations/nb.ts b/src/qt_gui/translations/nb.ts index 098e07ff6..b3797ae05 100644 --- a/src/qt_gui/translations/nb.ts +++ b/src/qt_gui/translations/nb.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Sjekk etter oppdateringer ved oppstart + + + Update Channel + Oppdateringskanal + Check for Updates @@ -1124,16 +1129,6 @@ Error Feil - - - Invalid update channel: - Ugyldig oppdateringskanal: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - I updateChannel i config.tml-filen må inneholde 'stable' eller 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Oppdatering tilgjengelig + + + Update Channel + Oppdateringskanal + Current Version diff --git a/src/qt_gui/translations/nl.ts b/src/qt_gui/translations/nl.ts index 5277ea88d..cf659acbe 100644 --- a/src/qt_gui/translations/nl.ts +++ b/src/qt_gui/translations/nl.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Bij opstart op updates controleren + + + Update Channel + Updatekanaal + Check for Updates @@ -1124,16 +1129,6 @@ Error Fout - - - Invalid update channel: - Ongeldig updatekanaal: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - In updateChannel in het config.tml-bestand moet 'stable' of 'unstable' staan - Network error: @@ -1169,6 +1164,11 @@ Update Available Update beschikbaar + + + Update Channel + Updatekanaal + Current Version diff --git a/src/qt_gui/translations/pl_PL.ts b/src/qt_gui/translations/pl_PL.ts index 71e2790de..810971804 100644 --- a/src/qt_gui/translations/pl_PL.ts +++ b/src/qt_gui/translations/pl_PL.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Sprawdź aktualizacje przy starcie + + + Update Channel + Kanał Aktualizacji + Check for Updates @@ -1124,16 +1129,6 @@ Error Błąd - - - Invalid update channel: - Nieprawidłowy kanał aktualizacji: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - W pliku config.tml, updateChannel musi zawierać 'stable' lub 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Dostępna aktualizacja + + + Update Channel + Kanał Aktualizacji + Current Version diff --git a/src/qt_gui/translations/pt_BR.ts b/src/qt_gui/translations/pt_BR.ts index f86f6d855..4676dfff6 100644 --- a/src/qt_gui/translations/pt_BR.ts +++ b/src/qt_gui/translations/pt_BR.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Verificar Atualizações ao Iniciar + + + Update Channel + Canal de Atualização + Check for Updates @@ -1124,16 +1129,6 @@ Error Erro - - - Invalid update channel: - Canal de atualização inválido: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - No arquivo config.tml, updateChannel deve conter apenas 'stable' ou 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Atualização disponível + + + Update Channel + Canal de Atualização + Current Version diff --git a/src/qt_gui/translations/ro_RO.ts b/src/qt_gui/translations/ro_RO.ts index 6cf9dadb6..ac298469d 100644 --- a/src/qt_gui/translations/ro_RO.ts +++ b/src/qt_gui/translations/ro_RO.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Verifică actualizări la pornire + + + Update Channel + Canal de Actualizare + Check for Updates @@ -1124,16 +1129,6 @@ Error Eroare - - - Invalid update channel: - Canal de actualizare invalid: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - În fișierul config.tml, updateChannel trebuie să conțină 'stable' sau 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Actualizare disponibilă + + + Update Channel + Canal de Actualizare + Current Version diff --git a/src/qt_gui/translations/ru_RU.ts b/src/qt_gui/translations/ru_RU.ts index 4d1cb79a0..87847de30 100644 --- a/src/qt_gui/translations/ru_RU.ts +++ b/src/qt_gui/translations/ru_RU.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Проверка обновлений при запуске + + + Update Channel + Канал обновления + Check for Updates @@ -1124,16 +1129,6 @@ Error Ошибка - - - Invalid update channel: - Недопустимый канал обновления: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - В файле config.tml параметр updateChannel должен содержать 'stable' или 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Доступно обновление + + + Update Channel + Канал обновления + Current Version diff --git a/src/qt_gui/translations/sq.ts b/src/qt_gui/translations/sq.ts index bfbaa586b..710de63f9 100644 --- a/src/qt_gui/translations/sq.ts +++ b/src/qt_gui/translations/sq.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Kontrollo për përditësime në nisje + + + Update Channel + Kanali i Përditësimit + Check for Updates @@ -1124,16 +1129,6 @@ Error Gabim - - - Invalid update channel: - Kanal përditësimi i pavlefshëm: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Në skedarin config.tml, updateChannel duhet të përmbajë 'stable' ose 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Ofrohet një përditësim + + + Update Channel + Kanali i Përditësimit + Current Version diff --git a/src/qt_gui/translations/tr_TR.ts b/src/qt_gui/translations/tr_TR.ts index 92bbfb47a..a4fa289f2 100644 --- a/src/qt_gui/translations/tr_TR.ts +++ b/src/qt_gui/translations/tr_TR.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Başlangıçta güncellemeleri kontrol et + + + Update Channel + Güncelleme Kanalı + Check for Updates @@ -1124,16 +1129,6 @@ Error Hata - - - Invalid update channel: - Geçersiz güncelleme kanalı: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - config.tml dosyasındaki updateChannel 'stable' veya 'unstable' içermelidir - Network error: @@ -1169,6 +1164,11 @@ Update Available Güncelleme Mevcut + + + Update Channel + Güncelleme Kanalı + Current Version diff --git a/src/qt_gui/translations/vi_VN.ts b/src/qt_gui/translations/vi_VN.ts index 5b59d2348..af5eb5249 100644 --- a/src/qt_gui/translations/vi_VN.ts +++ b/src/qt_gui/translations/vi_VN.ts @@ -514,6 +514,11 @@ Check for Updates at Startup Kiểm tra cập nhật khi khởi động + + + Update Channel + Kênh Cập Nhật + Check for Updates @@ -1124,16 +1129,6 @@ Error Lỗi - - - Invalid update channel: - Kênh cập nhật không hợp lệ: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - Trong updateChannel trong tệp config.tml phải chứa 'stable' hoặc 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available Có bản cập nhật + + + Update Channel + Kênh Cập Nhật + Current Version diff --git a/src/qt_gui/translations/zh_CN.ts b/src/qt_gui/translations/zh_CN.ts index 93f679175..638fa08cb 100644 --- a/src/qt_gui/translations/zh_CN.ts +++ b/src/qt_gui/translations/zh_CN.ts @@ -514,6 +514,11 @@ Check for Updates at Startup 启动时检查更新 + + + Update Channel + 更新频道 + Check for Updates @@ -1124,16 +1129,6 @@ Error 错误 - - - Invalid update channel: - 无效的更新通道: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - config.tml 文件中的 updateChannel 必须包含 'stable' 或 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available 可用更新 + + + Update Channel + 更新频道 + Current Version diff --git a/src/qt_gui/translations/zh_TW.ts b/src/qt_gui/translations/zh_TW.ts index 5cd1643dc..4d508d2ad 100644 --- a/src/qt_gui/translations/zh_TW.ts +++ b/src/qt_gui/translations/zh_TW.ts @@ -514,6 +514,11 @@ Check for Updates at Startup 啟動時檢查更新 + + + Update Channel + 更新頻道 + Check for Updates @@ -1124,16 +1129,6 @@ Error 錯誤 - - - Invalid update channel: - 無效的更新通道: - - - - In updateChannel in config.tml file must contain 'stable' or 'unstable' - 在 config.tml 文件的 updateChannel 中必須包含 'stable' 或 'unstable' - Network error: @@ -1169,6 +1164,11 @@ Update Available 可用更新 + + + Update Channel + 更新頻道 + Current Version