From 2bffd0fbff0115522cb017645efa9c3b608cfc45 Mon Sep 17 00:00:00 2001 From: DanielSvoboda Date: Wed, 18 Sep 2024 00:58:54 -0300 Subject: [PATCH] TR --- src/common/config.cpp | 4 +- src/emulator.cpp | 5 +- src/qt_gui/checkUpdate.cpp | 226 +++++++++++++----------- src/qt_gui/checkUpdate.h | 6 +- src/qt_gui/main_window.cpp | 15 +- src/qt_gui/main_window.h | 2 +- src/qt_gui/main_window_ui.h | 17 +- src/qt_gui/settings_dialog.cpp | 1 + src/qt_gui/translations/ar.ts | 225 +++++++++++++++++++++--- src/qt_gui/translations/da_DK.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/de.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/el.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/en.ts | 192 ++++++++++++++++++++- src/qt_gui/translations/es_ES.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/fa_IR.ts | 194 ++++++++++++++++++++- src/qt_gui/translations/fi.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/fr.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/hu_HU.ts | 200 +++++++++++++++++++++- src/qt_gui/translations/id.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/it.ts | 200 +++++++++++++++++++++- src/qt_gui/translations/ja_JP.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/ko_KR.ts | 192 ++++++++++++++++++++- src/qt_gui/translations/lt_LT.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/nb.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/nl.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/pl_PL.ts | 200 +++++++++++++++++++++- src/qt_gui/translations/pt_BR.ts | 192 ++++++++++++++++++++- src/qt_gui/translations/ro_RO.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/ru_RU.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/sq.ts | 200 +++++++++++++++++++++- src/qt_gui/translations/tr_TR.ts | 283 ++++++++++++++++++++++--------- src/qt_gui/translations/vi_VN.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/zh_CN.ts | 198 ++++++++++++++++++++- src/qt_gui/translations/zh_TW.ts | 198 ++++++++++++++++++++- 34 files changed, 5182 insertions(+), 340 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index 6ff365596..91c9547da 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -382,7 +382,7 @@ 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", "unstable"); + updateChannel = toml::find_or(general, "updateChannel", "unstable"); isShowSplash = toml::find_or(general, "showSplash", true); isAutoUpdate = toml::find_or(general, "autoUpdate", true); } @@ -476,7 +476,7 @@ void save(const std::filesystem::path& path) { data["General"]["logFilter"] = logFilter; data["General"]["logType"] = logType; data["General"]["userName"] = userName; - data["General"]["updateChannel"] = updateChannel; + data["General"]["updateChannel"] = updateChannel; data["General"]["showSplash"] = isShowSplash; data["General"]["autoUpdate"] = isAutoUpdate; data["Input"]["useSpecialPad"] = useSpecialPad; diff --git a/src/emulator.cpp b/src/emulator.cpp index a80a441d2..0791d7a27 100644 --- a/src/emulator.cpp +++ b/src/emulator.cpp @@ -77,10 +77,7 @@ Emulator::Emulator() { VideoCore::LoadRenderDoc(); } -Emulator::~Emulator() { - //const auto config_dir = Common::FS::GetUserPath(Common::FS::PathType::UserDir); - //Config::save(config_dir / "config.toml"); -} +Emulator::~Emulator() {} void Emulator::Run(const std::filesystem::path& file) { // Applications expect to be run from /app0 so mount the file's parent path as app0. diff --git a/src/qt_gui/checkUpdate.cpp b/src/qt_gui/checkUpdate.cpp index c837802b6..d685d0b8b 100644 --- a/src/qt_gui/checkUpdate.cpp +++ b/src/qt_gui/checkUpdate.cpp @@ -2,8 +2,6 @@ // SPDX-License-Identifier: GPL-2.0-or-later #include -#include -#include #include #include #include @@ -21,7 +19,6 @@ #include #include #include -#include #include #include #include @@ -35,7 +32,7 @@ namespace fs = std::filesystem; CheckUpdate::CheckUpdate(const bool showMessage, QWidget* parent) : QDialog(parent), networkManager(new QNetworkAccessManager(this)) { setWindowTitle(tr("Auto Updater")); - setFixedSize(420, 380); + setFixedSize(0, 0); CheckForUpdates(showMessage); } @@ -52,7 +49,7 @@ void CheckUpdate::CheckForUpdates(const bool showMessage) { } else { QMessageBox::warning( this, tr("Error"), - QString(tr("Invalid update channel:") + "\n%1\n" + + QString(tr("Invalid update channel: ") + updateChannel + "\n" + tr("In updateChannel in config.tml file must contain 'stable' or 'unstable'") .arg(updateChannel))); return; @@ -64,7 +61,7 @@ void CheckUpdate::CheckForUpdates(const bool showMessage) { connect(reply, &QNetworkReply::finished, this, [this, reply, showMessage, updateChannel]() { if (reply->error() != QNetworkReply::NoError) { QMessageBox::warning(this, tr("Error"), - QString(tr("Network error:") + "\n%1").arg(reply->errorString())); + QString(tr("Network error:") + "\n" + reply->errorString())); reply->deleteLater(); return; } @@ -113,15 +110,14 @@ void CheckUpdate::CheckForUpdates(const bool showMessage) { QDateTime dateTime = QDateTime::fromString(latestDate, Qt::ISODate); latestDate = dateTime.isValid() ? dateTime.toString("yyyy-MM-dd HH:mm:ss") : "Unknown date"; - if (jsonObj.contains("assets")) { - QJsonArray assets = jsonObj["assets"].toArray(); - bool found = false; - for (const QJsonValue& assetValue : assets) { - QJsonObject assetObj = assetValue.toObject(); + QJsonArray assets = jsonObj["assets"].toArray(); + bool found = false; + for (const QJsonValue& assetValue : assets) { + QJsonObject assetObj = assetValue.toObject(); - QString platformString; + QString platformString; #ifdef Q_OS_WIN - platformString = "win64-qt"; + platformString = "win64-qt"; #elif defined(Q_OS_LINUX) QString executablePath = QCoreApplication::applicationDirPath(); @@ -135,69 +131,27 @@ void CheckUpdate::CheckForUpdates(const bool showMessage) { #elif defined(Q_OS_MAC) platformString = "macos-qt"; #endif - if (assetObj["name"].toString().contains(platformString)) { - downloadUrl = assetObj["browser_download_url"].toString(); - found = true; - break; - } + if (assetObj["name"].toString().contains(platformString)) { + downloadUrl = assetObj["browser_download_url"].toString(); + found = true; + break; } - if (!found) { - QMessageBox::warning(this, tr("Error"), - tr("No download URL found for the specified asset.")); - } - } else { - QMessageBox::warning(this, tr("Error"), tr("No assets found in the response.")); + } + if (!found) { + QMessageBox::warning(this, tr("Error"), + tr("No download URL found for the specified asset.")); } - if (latestRev == currentRev && showMessage) { - QMessageBox::information(this, tr("Auto Updater"), - tr("Your version is already up to date!")); + if (latestRev == currentRev) { + if (showMessage) { + QMessageBox::information(this, tr("Auto Updater"), + tr("Your version is already up to date!")); + } + close(); + return; } else { - QString compareUrlString = - QString("https://api.github.com/repos/DanielSvoboda/shadPS4/compare/%1...%2") - .arg(currentRev) - .arg(latestRev); - - QUrl compareUrl(compareUrlString); - QNetworkRequest compareRequest(compareUrl); - QNetworkReply* compareReply = networkManager->get(compareRequest); - - connect(compareReply, &QNetworkReply::finished, this, - [this, compareReply, downloadUrl, latestDate, latestRev, currentDate, - currentRev]() { - if (compareReply->error() != QNetworkReply::NoError) { - QMessageBox::warning(this, tr("Error"), - QString(tr("Network error:") + "\n%1") - .arg(compareReply->errorString())); - compareReply->deleteLater(); - return; - } - - QByteArray compareResponse = compareReply->readAll(); - QJsonDocument compareJsonDoc(QJsonDocument::fromJson(compareResponse)); - QJsonObject compareJsonObj = compareJsonDoc.object(); - QJsonArray commits = compareJsonObj["commits"].toArray(); - - QString changes; - for (const QJsonValue& commitValue : commits) { - QJsonObject commitObj = commitValue.toObject(); - QString message = commitObj["commit"].toObject()["message"].toString(); - - // Remove texts after the first line break, if any - int newlineIndex = message.indexOf('\n'); - if (newlineIndex != -1) { - message = message.left(newlineIndex); - } - if (!changes.isEmpty()) { - changes += "
"; - } - changes += "    • " + message; - } - setupUI_UpdateAvailable(downloadUrl, latestDate, latestRev, currentDate, - currentRev, - "

" + tr("Changes") + ":

" + changes); - compareReply->deleteLater(); - }); + setFixedSize(420, 205); + setupUI_UpdateAvailable(downloadUrl, latestDate, latestRev, currentDate, currentRev); } reply->deleteLater(); }); @@ -205,7 +159,7 @@ void CheckUpdate::CheckForUpdates(const bool showMessage) { void CheckUpdate::setupUI_UpdateAvailable(const QString& downloadUrl, const QString& latestDate, const QString& latestRev, const QString& currentDate, - const QString& currentRev, const QString& textChangeLog) { + const QString& currentRev) { QVBoxLayout* layout = new QVBoxLayout(this); QHBoxLayout* titleLayout = new QHBoxLayout(); @@ -220,24 +174,30 @@ void CheckUpdate::setupUI_UpdateAvailable(const QString& downloadUrl, const QStr titleLayout->addWidget(titleLabel); layout->addLayout(titleLayout); - QString updateText = QString("


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

" - "

Do you want to update?

") + QString updateText = QString("


" + 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); + // Create text field for changelog QTextEdit* textField = new QTextEdit(this); - textField->setText(textChangeLog); textField->setReadOnly(true); textField->setFixedWidth(400); textField->setFixedHeight(200); + textField->setVisible(false); layout->addWidget(textField); + // Create toggle button + QPushButton* toggleButton = new QPushButton(tr("Show Changelog"), this); + layout->addWidget(toggleButton); + + // Setup bottom layout with action buttons QHBoxLayout* bottomLayout = new QHBoxLayout(); autoUpdateCheckBox = new QCheckBox(tr("Auto Update (Check at Startup)"), this); - yesButton = new QPushButton("Update", this); - noButton = new QPushButton("No", this); + yesButton = new QPushButton(tr("Update"), this); + noButton = new QPushButton(tr("No"), this); yesButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred); noButton->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Preferred); bottomLayout->addWidget(autoUpdateCheckBox); @@ -249,6 +209,30 @@ void CheckUpdate::setupUI_UpdateAvailable(const QString& downloadUrl, const QStr bottomLayout->addWidget(noButton); layout->addLayout(bottomLayout); + // Connect the toggle button to the slot to show/hide changelog + connect(toggleButton, &QPushButton::clicked, + [this, textField, toggleButton, currentRev, latestRev, downloadUrl, latestDate, + currentDate]() { + QString updateChannel = QString::fromStdString(Config::getUpdateChannel()); + if (updateChannel == "unstable") { + if (!textField->isVisible()) { + requestChangelog(currentRev, latestRev, downloadUrl, latestDate, + currentDate); + setFixedSize(420, 410); + textField->setVisible(true); + toggleButton->setText(tr("Hide Changelog")); + } else { + setFixedSize(420, 205); + textField->setVisible(false); + toggleButton->setText(tr("Show Changelog")); + } + } else { + QMessageBox::information( + this, tr("Changelog Unavailable"), + tr("Viewing changelog is only available for the 'unstable' channel.")); + } + }); + connect(yesButton, &QPushButton::clicked, this, [this, downloadUrl]() { DownloadAndInstallUpdate(downloadUrl); }); connect(noButton, &QPushButton::clicked, this, [this]() { close(); }); @@ -263,6 +247,59 @@ void CheckUpdate::setupUI_UpdateAvailable(const QString& downloadUrl, const QStr setLayout(layout); } +void CheckUpdate::requestChangelog(const QString& currentRev, const QString& latestRev, + const QString& downloadUrl, const QString& latestDate, + const QString& currentDate) { + QString compareUrlString = + QString("https://api.github.com/repos/DanielSvoboda/shadPS4/compare/%1...%2") + .arg(currentRev) + .arg(latestRev); + + QUrl compareUrl(compareUrlString); + QNetworkRequest compareRequest(compareUrl); + QNetworkReply* compareReply = networkManager->get(compareRequest); + + connect(compareReply, &QNetworkReply::finished, this, + [this, compareReply, downloadUrl, latestDate, latestRev, currentDate, currentRev]() { + if (compareReply->error() != QNetworkReply::NoError) { + QMessageBox::warning( + this, tr("Error"), + QString(tr("Network error:") + "\n%1").arg(compareReply->errorString())); + compareReply->deleteLater(); + return; + } + + QByteArray compareResponse = compareReply->readAll(); + QJsonDocument compareJsonDoc(QJsonDocument::fromJson(compareResponse)); + QJsonObject compareJsonObj = compareJsonDoc.object(); + QJsonArray commits = compareJsonObj["commits"].toArray(); + + QString changes; + for (const QJsonValue& commitValue : commits) { + QJsonObject commitObj = commitValue.toObject(); + QString message = commitObj["commit"].toObject()["message"].toString(); + + // Remove texts after the first line break, if any + int newlineIndex = message.indexOf('\n'); + if (newlineIndex != -1) { + message = message.left(newlineIndex); + } + if (!changes.isEmpty()) { + changes += "
"; + } + changes += "    • " + message; + } + + // Update the text field with the changelog + QTextEdit* textField = findChild(); + if (textField) { + textField->setHtml("

" + tr("Changes") + ":

" + changes); + } + + compareReply->deleteLater(); + }); +} + void CheckUpdate::DownloadAndInstallUpdate(const QString& url) { QNetworkRequest request(url); QNetworkReply* reply = networkManager->get(request); @@ -270,9 +307,8 @@ void CheckUpdate::DownloadAndInstallUpdate(const QString& url) { connect(reply, &QNetworkReply::finished, this, [this, reply, url]() { if (reply->error() != QNetworkReply::NoError) { QMessageBox::warning(this, tr("Error"), - tr("Network error occurred while trying to access the URL:") + - "\n" + url + "\n" + tr("Error details:") + "\n" + - reply->errorString()); + tr("Network error occurred while trying to access the URL") + + ":\n" + url + "\n" + reply->errorString()); reply->deleteLater(); return; } @@ -297,7 +333,7 @@ void CheckUpdate::DownloadAndInstallUpdate(const QString& url) { } else { QMessageBox::warning( this, tr("Error"), - QString(tr("Failed to save the update file at:") + "\n" + downloadPath)); + QString(tr("Failed to save the update file at") + ":\n" + downloadPath)); } reply->deleteLater(); @@ -313,7 +349,7 @@ void CheckUpdate::Unzip() { QFile zipFile(zipFilePath); if (!zipFile.open(QIODevice::ReadOnly)) { QMessageBox::warning(this, tr("Error"), - tr("Failed to open the ZIP file:") + "\n" + zipFilePath); + tr("Failed to open the ZIP file") + ":\n" + zipFilePath); return; } @@ -406,7 +442,7 @@ void CheckUpdate::Unzip() { if (!dir.exists()) { if (!dir.mkpath(dirPath)) { QMessageBox::warning(this, tr("Error"), - tr("Failed to create directory:") + "\n" + dirPath); + tr("Failed to create directory") + ":\n" + dirPath); continue; } } @@ -425,7 +461,7 @@ void CheckUpdate::Unzip() { if (!decompressData(compressedData, decompressedData)) { QMessageBox::warning(this, tr("Error"), - tr("Error decompressing file") + "\n" + + tr("Error decompressing file") + ":\n" + QString::fromStdString(fileName)); continue; } @@ -440,15 +476,15 @@ void CheckUpdate::Unzip() { if (!dir.exists()) { if (!dir.mkpath(dirPath)) { QMessageBox::warning(this, tr("Error"), - tr("Failed to create directory:") + "\n" + dirPath); + tr("Failed to create directory") + ":\n" + dirPath); continue; } } QFile outFile(fullPath); - if (!outFile.open(QIODevice::WriteOnly)) { // remove this? + if (!outFile.open(QIODevice::WriteOnly)) { QMessageBox::warning(this, tr("Error"), - tr("Failed to open output file:") + "\n" + fullPath); + tr("Failed to open output file") + ":\n" + fullPath); continue; } outFile.write(reinterpret_cast(decompressedData.data()), @@ -471,8 +507,8 @@ void CheckUpdate::Unzip() { if (!tarExtractDir.exists()) { if (!tarExtractDir.mkpath(tarExtractDirPath)) { QMessageBox::warning(this, tr("Error"), - tr("Failed to create TAR extraction directory:") + - "\n" + tarExtractDirPath); + tr("Failed to create TAR extraction directory") + + ":\n" + tarExtractDirPath); return; } } @@ -486,7 +522,7 @@ void CheckUpdate::Unzip() { // Check if tar was successful if (tarProcess.exitStatus() != QProcess::NormalExit || tarProcess.exitCode() != 0) { QMessageBox::warning(this, tr("Error"), - tr("Failed to extract the TAR file:") + "\n" + + tr("Failed to extract the TAR file") + ":\n" + tarProcess.errorString()); return; } @@ -506,7 +542,7 @@ void CheckUpdate::Install() { QString tempDirPath = userPath + "/temp_download_update"; QString rootPath = QString::fromStdString(std::filesystem::current_path().string()); - QString startingUpdate = tr("Iniciando atualização..."); + QString startingUpdate = tr("Starting Update..."); QString scriptContent; QString scriptFileName; @@ -560,7 +596,7 @@ void CheckUpdate::Install() { arguments << scriptFileName; processCommand = "bash"; #else - QMessageBox::warning(this, tr("Error"), tr("Unsupported operating system.")); + QMessageBox::warning(this, tr("Error"), "Unsupported operating system."); return; #endif @@ -580,6 +616,6 @@ void CheckUpdate::Install() { } else { QMessageBox::warning( this, tr("Error"), - QString(tr("Failed to create the update script file:") + "\n" + scriptFileName)); + QString(tr("Failed to create the update script file") + ":\n" + scriptFileName)); } } \ No newline at end of file diff --git a/src/qt_gui/checkUpdate.h b/src/qt_gui/checkUpdate.h index 71f085157..9f765dc25 100644 --- a/src/qt_gui/checkUpdate.h +++ b/src/qt_gui/checkUpdate.h @@ -25,7 +25,11 @@ private slots: private: void setupUI_UpdateAvailable(const QString& downloadUrl, const QString& latestDate, const QString& latestRev, const QString& currentDate, - const QString& currentRev, const QString& textChangeLog); + const QString& currentRev); + + void requestChangelog(const QString& currentRev, const QString& latestRev, + const QString& downloadUrl, const QString& latestDate, + const QString& currentDate); QCheckBox* autoUpdateCheckBox; QPushButton* yesButton; diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp index 3c83bf680..c80ccdca6 100644 --- a/src/qt_gui/main_window.cpp +++ b/src/qt_gui/main_window.cpp @@ -24,8 +24,6 @@ MainWindow::MainWindow(QWidget* parent) : QMainWindow(parent), ui(new Ui::MainWi MainWindow::~MainWindow() { SaveWindowState(); - //const auto config_dir = Common::FS::GetUserPath(Common::FS::PathType::UserDir); - //Config::save(config_dir / "config.toml"); } bool MainWindow::Init() { @@ -162,16 +160,14 @@ void MainWindow::LoadGameLists() { } } -void MainWindow::CheckUpdateMain(bool check) { -#ifdef _WIN64 - if (check) { +void MainWindow::CheckUpdateMain(bool checkSave) { + if (checkSave) { if (!Config::autoUpdate()) { return; } } - auto checkUpdate = new CheckUpdate(false, this); + auto checkUpdate = new CheckUpdate(false); checkUpdate->show(); -#endif } void MainWindow::GetPhysicalDevices() { @@ -235,7 +231,10 @@ void MainWindow::CreateConnects() { settingsDialog->exec(); }); - connect(ui->updaterAct, &QAction::triggered, this, [this]() { CheckUpdateMain(false); }); + connect(ui->updaterAct, &QAction::triggered, this, [this]() { + auto checkUpdate = new CheckUpdate(true); + checkUpdate->show(); + }); connect(ui->aboutAct, &QAction::triggered, this, [this]() { auto aboutDialog = new AboutDialog(this); diff --git a/src/qt_gui/main_window.h b/src/qt_gui/main_window.h index 76a9a9ba1..6da94de12 100644 --- a/src/qt_gui/main_window.h +++ b/src/qt_gui/main_window.h @@ -54,7 +54,7 @@ private: void CreateDockWindows(); void GetPhysicalDevices(); void LoadGameLists(); - void CheckUpdateMain(bool check); + void CheckUpdateMain(bool checkSave); void CreateConnects(); void SetLastUsedTheme(); void SetLastIconSizeBullet(); diff --git a/src/qt_gui/main_window_ui.h b/src/qt_gui/main_window_ui.h index bac46d3f3..8c75d5b6d 100644 --- a/src/qt_gui/main_window_ui.h +++ b/src/qt_gui/main_window_ui.h @@ -55,7 +55,7 @@ public: QMenu* menuSettings; QMenu* menuUtils; QMenu* menuThemes; - QMenu* menuAbout; + QMenu* menuHelp; QToolBar* toolBar; void setupUi(QMainWindow* MainWindow) { @@ -247,8 +247,8 @@ public: menuThemes = new QMenu(menuView); menuThemes->setObjectName("menuThemes"); menuThemes->setIcon(QIcon(":images/themes_icon.png")); - menuAbout = new QMenu(menuBar); - menuAbout->setObjectName("menuAbout"); + menuHelp = new QMenu(menuBar); + menuHelp->setObjectName("menuHelp"); MainWindow->setMenuBar(menuBar); toolBar = new QToolBar(MainWindow); toolBar->setObjectName("toolBar"); @@ -257,7 +257,7 @@ public: menuBar->addAction(menuFile->menuAction()); menuBar->addAction(menuView->menuAction()); menuBar->addAction(menuSettings->menuAction()); - menuBar->addAction(menuAbout->menuAction()); + menuBar->addAction(menuHelp->menuAction()); menuFile->addAction(bootInstallPkgAct); menuFile->addAction(bootGameAct); menuFile->addAction(addElfFolderAct); @@ -289,8 +289,8 @@ public: menuUtils->addAction(downloadCheatsPatchesAct); menuUtils->addAction(dumpGameListAct); menuUtils->addAction(pkgViewerAct); - menuAbout->addAction(updaterAct); - menuAbout->addAction(aboutAct); + menuHelp->addAction(updaterAct); + menuHelp->addAction(aboutAct); retranslateUi(MainWindow); @@ -304,7 +304,8 @@ public: bootInstallPkgAct->setText( QCoreApplication::translate("MainWindow", "Install Packages (PKG)", nullptr)); bootGameAct->setText(QCoreApplication::translate("MainWindow", "Boot Game", nullptr)); - updaterAct->setText(QCoreApplication::translate("MainWindow", "Check for Updates", nullptr)); + updaterAct->setText( + QCoreApplication::translate("MainWindow", "Check for Updates", nullptr)); aboutAct->setText(QCoreApplication::translate("MainWindow", "About shadPS4", nullptr)); configureAct->setText(QCoreApplication::translate("MainWindow", "Configure...", nullptr)); #if QT_CONFIG(tooltip) @@ -351,7 +352,7 @@ public: menuSettings->setTitle(QCoreApplication::translate("MainWindow", "Settings", nullptr)); menuUtils->setTitle(QCoreApplication::translate("MainWindow", "Utils", nullptr)); menuThemes->setTitle(QCoreApplication::translate("MainWindow", "Themes", nullptr)); - menuAbout->setTitle(QCoreApplication::translate("MainWindow", "About", nullptr)); + menuHelp->setTitle(QCoreApplication::translate("MainWindow", "Help", nullptr)); setThemeDark->setText(QCoreApplication::translate("MainWindow", "Dark", nullptr)); setThemeLight->setText(QCoreApplication::translate("MainWindow", "Light", nullptr)); setThemeGreen->setText(QCoreApplication::translate("MainWindow", "Green", nullptr)); diff --git a/src/qt_gui/settings_dialog.cpp b/src/qt_gui/settings_dialog.cpp index 6c43737fe..730fd6727 100644 --- a/src/qt_gui/settings_dialog.cpp +++ b/src/qt_gui/settings_dialog.cpp @@ -123,6 +123,7 @@ SettingsDialog::SettingsDialog(std::span physical_devices, QWidge connect(ui->logFilterLineEdit, &QLineEdit::textChanged, this, [](const QString& text) { Config::setLogFilter(text.toStdString()); }); + // I believe all of this should go to settings_dialog.ui | and add translation in .ts // Create the "Update" section and add it to the existing QGroupBox QGroupBox* updateGroupBox = new QGroupBox("Update"); updateGroupBox->setMaximumWidth(265); diff --git a/src/qt_gui/translations/ar.ts b/src/qt_gui/translations/ar.ts index 12b1e7ba6..c162ff95c 100644 --- a/src/qt_gui/translations/ar.ts +++ b/src/qt_gui/translations/ar.ts @@ -1,6 +1,4 @@ - - - + @@ -170,6 +168,11 @@ Boot Game تشغيل اللعبة + + + Check for Updates + تحقق من التحديثات + About shadPS4 @@ -310,10 +313,10 @@ Themes السمات - + - About - حول + Help + مساعدة @@ -502,11 +505,11 @@ MainWindow - - - Game List - ققائمة الألعاب - + + + Game List + ققائمة الألعاب + * Unsupported Vulkan Version @@ -663,17 +666,7 @@ defaultTextEdit_MSG - الغش والتصحيحات هي ميزات تجريبية. - استخدمها بحذر. - - قم بتنزيل الغش بشكل فردي عن طريق اختيار المستودع والنقر على زر التنزيل. - في علامة تبويب التصحيحات، يمكنك تنزيل جميع التصحيحات دفعة واحدة، واختيار ما تريد استخدامه، وحفظ اختياراتك. - - نظرًا لأننا لا نقوم بتطوير الغش/التصحيحات، - يرجى الإبلاغ عن أي مشاكل إلى مؤلف الغش. - - هل قمت بإنشاء غش جديد؟ قم بزيارة: - https://github.com/shadps4-emu/ps4_cheats + الغش والتصحيحات هي ميزات تجريبية.\nاستخدمها بحذر.\n\nقم بتنزيل الغش بشكل فردي عن طريق اختيار المستودع والنقر على زر التنزيل.\nفي علامة تبويب التصحيحات، يمكنك تنزيل جميع التصحيحات دفعة واحدة، واختيار ما تريد استخدامه، وحفظ اختياراتك.\n\nنظرًا لأننا لا نقوم بتطوير الغش/التصحيحات،\nيرجى الإبلاغ عن أي مشاكل إلى مؤلف الغش.\n\nهل قمت بإنشاء غش جديد؟ قم بزيارة:\nhttps://github.com/shadps4-emu/ps4_cheats @@ -728,8 +721,7 @@ Do you want to delete the selected file?\n%1 - هل تريد حذف الملف المحدد؟ - %1 + هل تريد حذف الملف المحدد؟\n%1 @@ -988,4 +980,187 @@ مسار - + + CheckUpdate + + + Auto Updater + محدث تلقائي + + + + Error + خطأ + + + + Invalid update channel: + قناة تحديث غير صالحة: + + + + In updateChannel in config.tml file must contain 'stable' or 'unstable' + يجب أن يحتوي updateChannel في ملف config.tml على 'stable' أو 'unstable' + + + + Network error: + خطأ في الشبكة: + + + + Failed to parse update information. + فشل في تحليل معلومات التحديث. + + + + No releases found. + لم يتم العثور على إصدارات. + + + + Invalid release data. + بيانات الإصدار غير صالحة. + + + + No download URL found for the specified asset. + لم يتم العثور على عنوان URL للتنزيل للأصل المحدد. + + + + Your version is already up to date! + نسختك محدثة بالفعل! + + + + Update Available + تحديث متاح + + + + Current Version + الإصدار الحالي + + + + Latest Version + آخر إصدار + + + + Do you want to update? + هل تريد التحديث؟ + + + + Show Changelog + عرض سجل التغييرات + + + + Auto Update (Check at Startup) + تحديث تلقائي (تحقق عند بدء التشغيل) + + + + Update + تحديث + + + + No + لا + + + + Hide Changelog + إخفاء سجل التغييرات + + + + Changelog Unavailable + سجل التغييرات غير متوفر + + + + Viewing changelog is only available for the 'unstable' channel. + عرض سجل التغييرات متاح فقط للقناة 'غير المستقرة'. + + + + Changes + تغييرات + + + + Network error occurred while trying to access the URL + حدث خطأ في الشبكة أثناء محاولة الوصول إلى عنوان URL + + + + Download Complete + اكتمل التنزيل + + + + The update has been downloaded, press OK to install. + تم تنزيل التحديث، اضغط على OK للتثبيت. + + + + Failed to save the update file at + فشل في حفظ ملف التحديث في + + + + Failed to open the ZIP file + فشل في فتح ملف ZIP + + + + File name is empty. Possibly corrupted ZIP. + اسم الملف فارغ. قد يكون ZIP تالفًا. + + + + Failed to create directory + فشل في إنشاء الدليل + + + + Error decompressing file + خطأ أثناء فك ضغط الملف + + + + Failed to open output file + فشل في فتح ملف الإخراج + + + + Unsupported compression method for file: + طريقة الضغط غير مدعومة للملف: + + + + Failed to create TAR extraction directory + فشل في إنشاء دليل استخراج TAR + + + + Failed to extract the TAR file + فشل في استخراج ملف TAR + + + + Starting Update... + بدء التحديث... + + + + Failed to create the update script file + فشل في إنشاء ملف سكريبت التحديث + + + \ No newline at end of file diff --git a/src/qt_gui/translations/da_DK.ts b/src/qt_gui/translations/da_DK.ts index bb405ec0a..1809dee22 100644 --- a/src/qt_gui/translations/da_DK.ts +++ b/src/qt_gui/translations/da_DK.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Tjek for opdateringer + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Hjælp + Dark @@ -975,4 +980,187 @@ Sti + + CheckUpdate + + + Auto Updater + Automatisk opdatering + + + + 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: + Netsværksfejl: + + + + Failed to parse update information. + Kunne ikke analysere opdateringsoplysninger. + + + + No releases found. + Ingen udgivelser fundet. + + + + Invalid release data. + Ugyldige udgivelsesdata. + + + + No download URL found for the specified asset. + Ingen download-URL fundet for den specificerede aktiver. + + + + Your version is already up to date! + Din version er allerede opdateret! + + + + Update Available + Opdatering tilgængelig + + + + Current Version + Nuværende version + + + + Latest Version + Nyeste version + + + + Do you want to update? + Vil du opdatere? + + + + Show Changelog + Vis ændringslog + + + + Auto Update (Check at Startup) + Automatisk opdatering (Tjek ved opstart) + + + + Update + Opdater + + + + No + Nej + + + + Hide Changelog + Skjul ændringslog + + + + Changelog Unavailable + Ændringslog ikke tilgængelig + + + + Viewing changelog is only available for the 'unstable' channel. + Visning af ændringsloggen er kun tilgængelig for den 'ustabile' kanal. + + + + Changes + Ændringer + + + + Network error occurred while trying to access the URL + Netsværksfejl opstod, mens der blev forsøgt at få adgang til URL'en + + + + Download Complete + Download fuldført + + + + The update has been downloaded, press OK to install. + Opdateringen er blevet downloadet, tryk på OK for at installere. + + + + Failed to save the update file at + Kunne ikke gemme opdateringsfilen på + + + + Failed to open the ZIP file + Kunne ikke åbne ZIP-filen + + + + File name is empty. Possibly corrupted ZIP. + Filnavnet er tomt. Måske er ZIP'en beskadiget. + + + + Failed to create directory + Kunne ikke oprette biblioteket + + + + Error decompressing file + Fejl under dekomprimering af filen + + + + Failed to open output file + Kunne ikke åbne outputfilen + + + + Unsupported compression method for file: + Ikke understøttet komprimeringsmetode for filen: + + + + Failed to create TAR extraction directory + Kunne ikke oprette TAR-udtrækningsbibliotek + + + + Failed to extract the TAR file + Kunne ikke udtrække TAR-filen + + + + Starting Update... + Starter opdatering... + + + + Failed to create the update script file + Kunne ikke oprette opdateringsscriptfilen + + \ No newline at end of file diff --git a/src/qt_gui/translations/de.ts b/src/qt_gui/translations/de.ts index 1482686ce..3e537ee4e 100644 --- a/src/qt_gui/translations/de.ts +++ b/src/qt_gui/translations/de.ts @@ -168,6 +168,11 @@ Boot Game Spiel starten + + + Check for Updates + Nach Updates suchen + About shadPS4 @@ -308,11 +313,11 @@ Themes Stile - - - About - Über - + + + Help + Hilfe + Dark @@ -975,4 +980,187 @@ Pfad + + CheckUpdate + + + Auto Updater + Automatischer Aktualisierer + + + + 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: + Netzwerkfehler: + + + + Failed to parse update information. + Fehler beim Parsen der Aktualisierungsinformationen. + + + + No releases found. + Keine Versionen gefunden. + + + + Invalid release data. + Ungültige Versionsdaten. + + + + No download URL found for the specified asset. + Keine Download-URL für das angegebene Asset gefunden. + + + + Your version is already up to date! + Ihre Version ist bereits aktuell! + + + + Update Available + Aktualisierung verfügbar + + + + Current Version + Aktuelle Version + + + + Latest Version + Neueste Version + + + + Do you want to update? + Möchten Sie aktualisieren? + + + + Show Changelog + Änderungsprotokoll anzeigen + + + + Auto Update (Check at Startup) + Automatische Aktualisierung (Beim Start überprüfen) + + + + Update + Aktualisieren + + + + No + Nein + + + + Hide Changelog + Änderungsprotokoll ausblenden + + + + Changelog Unavailable + Änderungsprotokoll nicht verfügbar + + + + Viewing changelog is only available for the 'unstable' channel. + Die Ansicht des Änderungsprotokolls ist nur für den 'unstabilen' Kanal verfügbar. + + + + Changes + Änderungen + + + + Network error occurred while trying to access the URL + Beim Zugriff auf die URL ist ein Netzwerkfehler aufgetreten + + + + Download Complete + Download abgeschlossen + + + + The update has been downloaded, press OK to install. + Die Aktualisierung wurde heruntergeladen, drücken Sie OK, um zu installieren. + + + + Failed to save the update file at + Fehler beim Speichern der Aktualisierungsdatei in + + + + Failed to open the ZIP file + Fehler beim Öffnen der ZIP-Datei + + + + File name is empty. Possibly corrupted ZIP. + Dateiname ist leer. Möglicherweise beschädigte ZIP. + + + + Failed to create directory + Fehler beim Erstellen des Verzeichnisses + + + + Error decompressing file + Fehler beim Dekomprimieren der Datei + + + + Failed to open output file + Fehler beim Öffnen der Ausgabedatei + + + + Unsupported compression method for file: + Nicht unterstützte Komprimierungsmethode für die Datei: + + + + Failed to create TAR extraction directory + Fehler beim Erstellen des TAR-Extraktionsverzeichnisses + + + + Failed to extract the TAR file + Fehler beim Extrahieren der TAR-Datei + + + + Starting Update... + Aktualisierung wird gestartet... + + + + Failed to create the update script file + Fehler beim Erstellen der Aktualisierungs-Skriptdatei + + \ No newline at end of file diff --git a/src/qt_gui/translations/el.ts b/src/qt_gui/translations/el.ts index 4a3aa54ff..c0c17f17e 100644 --- a/src/qt_gui/translations/el.ts +++ b/src/qt_gui/translations/el.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Έλεγχος για ενημερώσεις + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Βοήθεια + Dark @@ -975,4 +980,187 @@ Διαδρομή + + CheckUpdate + + + Auto Updater + Αυτόματος Ενημερωτής + + + + Error + Σφάλμα + + + + Invalid update channel: + Μη έγκυρο κανάλι ενημέρωσης: + + + + In updateChannel in config.tml file must contain 'stable' or 'unstable' + Στο updateChannel του αρχείου config.tml πρέπει να περιέχει 'stable' ή 'unstable' + + + + Network error: + Σφάλμα δικτύου: + + + + Failed to parse update information. + Αποτυχία ανάλυσης πληροφοριών ενημέρωσης. + + + + No releases found. + Δεν βρέθηκαν εκδόσεις. + + + + Invalid release data. + Μη έγκυρα δεδομένα έκδοσης. + + + + No download URL found for the specified asset. + Δεν βρέθηκε URL λήψης για το συγκεκριμένο στοιχείο. + + + + Your version is already up to date! + Η έκδοσή σας είναι ήδη ενημερωμένη! + + + + Update Available + Διαθέσιμη Ενημέρωση + + + + Current Version + Τρέχουσα Έκδοση + + + + Latest Version + Τελευταία Έκδοση + + + + Do you want to update? + Θέλετε να ενημερώσετε; + + + + Show Changelog + Εμφάνιση Ιστορικού Αλλαγών + + + + Auto Update (Check at Startup) + Αυτόματη Ενημέρωση (Έλεγχος κατά την εκκίνηση) + + + + Update + Ενημέρωση + + + + No + Όχι + + + + Hide Changelog + Απόκρυψη Ιστορικού Αλλαγών + + + + Changelog Unavailable + Το Ιστορικό Αλλαγών δεν είναι διαθέσιμο + + + + Viewing changelog is only available for the 'unstable' channel. + Η προβολή του ιστορικού αλλαγών είναι διαθέσιμη μόνο για το 'unstable' κανάλι. + + + + Changes + Αλλαγές + + + + Network error occurred while trying to access the URL + Σφάλμα δικτύου κατά την προσπάθεια πρόσβασης στη διεύθυνση URL + + + + Download Complete + Λήψη ολοκληρώθηκε + + + + The update has been downloaded, press OK to install. + Η ενημέρωση έχει ληφθεί, πατήστε OK για να εγκαταστήσετε. + + + + Failed to save the update file at + Αποτυχία αποθήκευσης του αρχείου ενημέρωσης στο + + + + Failed to open the ZIP file + Αποτυχία ανοίγματος του αρχείου ZIP + + + + File name is empty. Possibly corrupted ZIP. + Το όνομα αρχείου είναι κενό. Ενδεχομένως κατεστραμμένο ZIP. + + + + Failed to create directory + Αποτυχία δημιουργίας καταλόγου + + + + Error decompressing file + Σφάλμα κατά την αποσυμπίεση του αρχείου + + + + Failed to open output file + Αποτυχία ανοίγματος του αρχείου εξόδου + + + + Unsupported compression method for file: + Μη υποστηριζόμενη μέθοδος συμπίεσης για το αρχείο: + + + + Failed to create TAR extraction directory + Αποτυχία δημιουργίας καταλόγου εξαγωγής TAR + + + + Failed to extract the TAR file + Αποτυχία εξαγωγής του αρχείου TAR + + + + Starting Update... + Εκκίνηση Ενημέρωσης... + + + + Failed to create the update script file + Αποτυχία δημιουργίας του αρχείου σεναρίου ενημέρωσης + + \ No newline at end of file diff --git a/src/qt_gui/translations/en.ts b/src/qt_gui/translations/en.ts index 9696610bc..7f6c837f8 100644 --- a/src/qt_gui/translations/en.ts +++ b/src/qt_gui/translations/en.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Check for Updates + About shadPS4 @@ -310,8 +315,8 @@ - About - About + Help + Help @@ -975,4 +980,187 @@ Path + + CheckUpdate + + + Auto Updater + Auto Updater + + + + 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: + Network error: + + + + Failed to parse update information. + Failed to parse update information. + + + + No releases found. + No releases found. + + + + Invalid release data. + Invalid release data. + + + + No download URL found for the specified asset. + No download URL found for the specified asset. + + + + Your version is already up to date! + Your version is already up to date! + + + + Update Available + Update Available + + + + Current Version + Current Version + + + + Latest Version + Latest Version + + + + Do you want to update? + Do you want to update? + + + + Show Changelog + Show Changelog + + + + Auto Update (Check at Startup) + Auto Update (Check at Startup) + + + + Update + Update + + + + No + No + + + + Hide Changelog + Hide Changelog + + + + Changelog Unavailable + Changelog Unavailable + + + + Viewing changelog is only available for the 'unstable' channel. + Viewing changelog is only available for the 'unstable' channel. + + + + Changes + Changes + + + + Network error occurred while trying to access the URL + Network error occurred while trying to access the URL + + + + Download Complete + Download Complete + + + + The update has been downloaded, press OK to install. + The update has been downloaded, press OK to install. + + + + Failed to save the update file at + Failed to save the update file at + + + + Failed to open the ZIP file + Failed to open the ZIP file + + + + File name is empty. Possibly corrupted ZIP. + File name is empty. Possibly corrupted ZIP. + + + + Failed to create directory + Failed to create directory + + + + Error decompressing file + Error decompressing file + + + + Failed to open output file + Failed to open output file + + + + Unsupported compression method for file: + Unsupported compression method for file: + + + + Failed to create TAR extraction directory + Failed to create TAR extraction directory + + + + Failed to extract the TAR file + Failed to extract the TAR file + + + + Starting Update... + Starting Update... + + + + Failed to create the update script file + Failed to create the update script file + + \ No newline at end of file diff --git a/src/qt_gui/translations/es_ES.ts b/src/qt_gui/translations/es_ES.ts index e1bc91809..8dbb16946 100644 --- a/src/qt_gui/translations/es_ES.ts +++ b/src/qt_gui/translations/es_ES.ts @@ -168,6 +168,11 @@ Boot Game Iniciar juego + + + Check for Updates + Buscar actualizaciones + About shadPS4 @@ -308,11 +313,11 @@ Themes Temas - - - About - Ayuda - + + + Help + Ayuda + Dark @@ -975,4 +980,187 @@ Ruta + + CheckUpdate + + + Auto Updater + Actualizador Automático + + + + 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: + Error de red: + + + + Failed to parse update information. + Error al analizar la información de actualización. + + + + No releases found. + No se encontraron versiones. + + + + Invalid release data. + Datos de versión no válidos. + + + + No download URL found for the specified asset. + No se encontró URL de descarga para el activo especificado. + + + + Your version is already up to date! + ¡Su versión ya está actualizada! + + + + Update Available + Actualización disponible + + + + Current Version + Versión actual + + + + Latest Version + Última versión + + + + Do you want to update? + ¿Quieres actualizar? + + + + Show Changelog + Mostrar registro de cambios + + + + Auto Update (Check at Startup) + Actualización automática (Verificar al iniciar) + + + + Update + Actualizar + + + + No + No + + + + Hide Changelog + Ocultar registro de cambios + + + + Changelog Unavailable + Registro de cambios no disponible + + + + Viewing changelog is only available for the 'unstable' channel. + La visualización del registro de cambios solo está disponible para el canal 'inestable'. + + + + Changes + Cambios + + + + Network error occurred while trying to access the URL + Se produjo un error de red al intentar acceder a la URL + + + + Download Complete + Descarga completa + + + + The update has been downloaded, press OK to install. + La actualización se ha descargado, presione Aceptar para instalar. + + + + Failed to save the update file at + No se pudo guardar el archivo de actualización en + + + + Failed to open the ZIP file + No se pudo abrir el archivo ZIP + + + + File name is empty. Possibly corrupted ZIP. + El nombre del archivo está vacío. Posiblemente ZIP dañado. + + + + Failed to create directory + No se pudo crear el directorio + + + + Error decompressing file + Error al descomprimir el archivo + + + + Failed to open output file + No se pudo abrir el archivo de salida + + + + Unsupported compression method for file: + Método de compresión no soportado para el archivo: + + + + Failed to create TAR extraction directory + No se pudo crear el directorio de extracción TAR + + + + Failed to extract the TAR file + No se pudo extraer el archivo TAR + + + + Starting Update... + Iniciando actualización... + + + + Failed to create the update script file + No se pudo crear el archivo del script de actualización + + \ No newline at end of file diff --git a/src/qt_gui/translations/fa_IR.ts b/src/qt_gui/translations/fa_IR.ts index 089653069..c99a1fcf6 100644 --- a/src/qt_gui/translations/fa_IR.ts +++ b/src/qt_gui/translations/fa_IR.ts @@ -168,6 +168,11 @@ Boot Game اجرای بازی + + + Check for Updates + به روز رسانی را بررسی کنید + About shadPS4 @@ -308,10 +313,10 @@ Themes تم ها - + - About - درباره ما + Help + کمک @@ -975,4 +980,187 @@ مسیر + + CheckUpdate + + + Auto Updater + به روز رسانی خودکار + + + + Error + خطا + + + + Invalid update channel: + کانال به روز رسانی نامعتبر: + + + + In updateChannel in config.tml file must contain 'stable' or 'unstable' + در فایل config.tml، updateChannel باید فقط شامل 'stable' یا 'unstable' باشد + + + + Network error: + خطای شبکه: + + + + Failed to parse update information. + خطا در تجزیه اطلاعات بهروزرسانی. + + + + No releases found. + هیچ نسخه ای یافت نشد. + + + + Invalid release data. + داده های نسخه نامعتبر است. + + + + No download URL found for the specified asset. + هیچ URL دانلودی برای دارایی مشخص شده پیدا نشد. + + + + Your version is already up to date! + نسخه شما اکنون به روز شده است! + + + + Update Available + به روز رسانی موجود است + + + + Current Version + نسخه فعلی + + + + Latest Version + جدیدترین نسخه + + + + Do you want to update? + آیا می خواهید به روز رسانی کنید؟ + + + + Show Changelog + نمایش تغییرات + + + + Auto Update (Check at Startup) + به روز رسانی خودکار (بررسی در هنگام راه اندازی) + + + + Update + به روز رسانی + + + + No + خیر + + + + Hide Changelog + مخفی کردن تغییرات + + + + Changelog Unavailable + تغییرات در دسترس نیست + + + + Viewing changelog is only available for the 'unstable' channel. + نمایش تغییرات فقط برای کانال 'unstable' در دسترس است. + + + + Changes + تغییرات + + + + Network error occurred while trying to access the URL + در حین تلاش برای دسترسی به URL خطای شبکه رخ داد + + + + Download Complete + دانلود کامل شد + + + + The update has been downloaded, press OK to install. + به روز رسانی دانلود شده است، برای نصب OK را فشار دهید. + + + + Failed to save the update file at + فایل به روز رسانی ذخیره نشد + + + + Failed to open the ZIP file + خطا در باز کردن فایل ZIP + + + + File name is empty. Possibly corrupted ZIP. + نام فایل خالی است. ممکن است ZIP خراب باشد. + + + + Failed to create directory + خطا در ایجاد دایرکتوری + + + + Error decompressing file + خطا در استخراج فایل + + + + Failed to open output file + خطا در باز کردن فایل خروجی + + + + Unsupported compression method for file: + روش فشرده سازی پشتیبانی نشده برای فایل: + + + + Failed to create TAR extraction directory + خطا در ایجاد دایرکتوری استخراج TAR + + + + Failed to extract the TAR file + خطا در استخراج فایل TAR + + + + Starting Update... + شروع به روز رسانی... + + + + Failed to create the update script file + فایل اسکریپت به روز رسانی ایجاد نشد + + \ No newline at end of file diff --git a/src/qt_gui/translations/fi.ts b/src/qt_gui/translations/fi.ts index 50e24fce6..a3bd7d6ce 100644 --- a/src/qt_gui/translations/fi.ts +++ b/src/qt_gui/translations/fi.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Tarkista päivitykset + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Apua + Dark @@ -975,4 +980,187 @@ Polku + + CheckUpdate + + + Auto Updater + Automaattinen päivitys + + + + 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: + Verkkovirhe: + + + + Failed to parse update information. + Päivitysinformaation jäsentäminen epäonnistui. + + + + No releases found. + Ei julkaisuja löytynyt. + + + + Invalid release data. + Virheelliset julkaisutiedot. + + + + No download URL found for the specified asset. + Ei lataus-URL:ia löytynyt määritetylle omaisuudelle. + + + + Your version is already up to date! + Versiosi on jo ajan tasalla! + + + + Update Available + Päivitys saatavilla + + + + Current Version + Nykyinen versio + + + + Latest Version + Uusin versio + + + + Do you want to update? + Haluatko päivittää? + + + + Show Changelog + Näytä muutospäiväkirja + + + + Auto Update (Check at Startup) + Automaattinen päivitys (Tarkista käynnistyksessä) + + + + Update + Päivitä + + + + No + Ei + + + + Hide Changelog + Piilota muutospäiväkirja + + + + Changelog Unavailable + Muutospäiväkirja ei saatavilla + + + + Viewing changelog is only available for the 'unstable' channel. + Muutospäiväkirjan katsominen on saatavilla vain 'unstable'-kanavalle. + + + + Changes + Muutos + + + + Network error occurred while trying to access the URL + Verkkovirhe tapahtui yrittäessäsi päästä URL-osoitteeseen + + + + Download Complete + Download valmis + + + + The update has been downloaded, press OK to install. + Päivitys on ladattu, paina OK asentaaksesi. + + + + Failed to save the update file at + Päivitystiedoston tallentaminen epäonnistui osoitteeseen + + + + Failed to open the ZIP file + ZIP-tiedoston avaaminen epäonnistui + + + + File name is empty. Possibly corrupted ZIP. + Tiedostonimi on tyhjö. Mahdollisesti rikkinäinen ZIP. + + + + Failed to create directory + Kansion luominen epäonnistui + + + + Error decompressing file + Virhe tiedoston purkamisessa + + + + Failed to open output file + Uloskirjoitustiedoston avaaminen epäonnistui + + + + Unsupported compression method for file: + Tiedostolle tuettamaton pakkausmenetelmä: + + + + Failed to create TAR extraction directory + TAR-purkuhakemiston luominen epäonnistui + + + + Failed to extract the TAR file + TAR-tiedoston purkaminen epäonnistui + + + + Starting Update... + Aloitetaan päivitys... + + + + Failed to create the update script file + Päivitysskripttitiedoston luominen epäonnistui + + \ No newline at end of file diff --git a/src/qt_gui/translations/fr.ts b/src/qt_gui/translations/fr.ts index 5ba5e7e2e..278f90ffa 100644 --- a/src/qt_gui/translations/fr.ts +++ b/src/qt_gui/translations/fr.ts @@ -168,6 +168,11 @@ Boot Game Démarrer un jeu + + + Check for Updates + Vérifier les mises à jour + About shadPS4 @@ -308,11 +313,11 @@ Themes Thèmes - - - About - À propos - + + + Help + Aide + Dark @@ -975,4 +980,187 @@ Répertoire + + CheckUpdate + + + Auto Updater + Mise à jour automatique + + + + 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: + Erreur réseau : + + + + Failed to parse update information. + Échec de l'analyse des informations de mise à jour. + + + + No releases found. + Aucune version trouvée. + + + + Invalid release data. + Données de version invalides. + + + + No download URL found for the specified asset. + Aucune URL de téléchargement trouvée pour l'élément spécifié. + + + + Your version is already up to date! + Votre version est déjà à jour ! + + + + Update Available + Mise à jour disponible + + + + Current Version + Version actuelle + + + + Latest Version + Dernière version + + + + Do you want to update? + Voulez-vous mettre à jour ? + + + + Show Changelog + Afficher le journal des modifications + + + + Auto Update (Check at Startup) + Mise à jour automatique (Vérifier au démarrage) + + + + Update + Mettre à jour + + + + No + Non + + + + Hide Changelog + Cacher le journal des modifications + + + + Changelog Unavailable + Journal des modifications indisponible + + + + Viewing changelog is only available for the 'unstable' channel. + La consultation du journal des modifications n'est disponible que pour le canal 'unstable'. + + + + Changes + Modifications + + + + Network error occurred while trying to access the URL + Une erreur réseau s'est produite en essayant d'accéder à l'URL + + + + Download Complete + Téléchargement terminé + + + + The update has been downloaded, press OK to install. + La mise à jour a été téléchargée, appuyez sur OK pour l'installer. + + + + Failed to save the update file at + Échec de la sauvegarde du fichier de mise à jour à + + + + Failed to open the ZIP file + Échec de l'ouverture du fichier ZIP + + + + File name is empty. Possibly corrupted ZIP. + Le nom du fichier est vide. ZIP potentiellement corrompu. + + + + Failed to create directory + Échec de la création du répertoire + + + + Error decompressing file + Erreur lors de la décompression du fichier + + + + Failed to open output file + Échec de l'ouverture du fichier de sortie + + + + Unsupported compression method for file: + Méthode de compression non prise en charge pour le fichier : + + + + Failed to create TAR extraction directory + Échec de la création du répertoire d'extraction TAR + + + + Failed to extract the TAR file + Échec de l'extraction du fichier TAR + + + + Starting Update... + Démarrage de la mise à jour... + + + + Failed to create the update script file + Échec de la création du fichier de script de mise à jour + + \ No newline at end of file diff --git a/src/qt_gui/translations/hu_HU.ts b/src/qt_gui/translations/hu_HU.ts index 0f69822e7..637f9bf84 100644 --- a/src/qt_gui/translations/hu_HU.ts +++ b/src/qt_gui/translations/hu_HU.ts @@ -168,6 +168,11 @@ Boot Game Játék Bootolása + + + Check for Updates + Frissítések keresése + About shadPS4 @@ -308,11 +313,11 @@ Themes Témák - - - About - Segítség - + + + Help + Segítség + Dark @@ -975,4 +980,187 @@ Útvonal - + + CheckUpdate + + + Auto Updater + Automatikus frissítő + + + + 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: + Hálózati hiba: + + + + Failed to parse update information. + A frissítési információk elemzése sikertelen. + + + + No releases found. + Nincs kiadás található. + + + + Invalid release data. + Érvénytelen kiadási adatok. + + + + No download URL found for the specified asset. + Nincs letöltési URL a megadott eszközhöz. + + + + Your version is already up to date! + A verziód már naprakész! + + + + Update Available + Frissítés elérhető + + + + Current Version + Jelenlegi verzió + + + + Latest Version + Legújabb verzió + + + + Do you want to update? + Szeretnéd frissíteni? + + + + Show Changelog + Módosítások megjelenítése + + + + Auto Update (Check at Startup) + Automatikus frissítés (Ellenőrzés indításkor) + + + + Update + Frissítés + + + + No + Nem + + + + Hide Changelog + Módosítások elrejtése + + + + Changelog Unavailable + Módosítások nem elérhetők + + + + Viewing changelog is only available for the 'unstable' channel. + A módosítások megtekintése csak az 'unstable' csatornára érhető el. + + + + Changes + Módosítások + + + + Network error occurred while trying to access the URL + Hálózati hiba történt az URL elérésekor + + + + Download Complete + Letöltés kész + + + + The update has been downloaded, press OK to install. + A frissítés letöltődött, nyomja meg az OK gombot az telepítéshez. + + + + Failed to save the update file at + A frissítési fájl mentése nem sikerült a következő helyre + + + + Failed to open the ZIP file + A ZIP fájl megnyitása nem sikerült + + + + File name is empty. Possibly corrupted ZIP. + A fájlnév üres. Lehetséges, hogy a ZIP sérült. + + + + Failed to create directory + A mappa létrehozása nem sikerült + + + + Error decompressing file + Hiba a fájl kicsomagolásakor + + + + Failed to open output file + A kimeneti fájl megnyitása nem sikerült + + + + Unsupported compression method for file: + Támogatott tömörítési módszer a fájlhoz: + + + + Failed to create TAR extraction directory + A TAR kicsomagolási mappa létrehozása nem sikerült + + + + Failed to extract the TAR file + A TAR fájl kicsomagolása nem sikerült + + + + Starting Update... + Frissítés indítása... + + + + Failed to create the update script file + A frissítési szkript fájl létrehozása nem sikerült + + + \ No newline at end of file diff --git a/src/qt_gui/translations/id.ts b/src/qt_gui/translations/id.ts index 6108ffa20..856bfa8b7 100644 --- a/src/qt_gui/translations/id.ts +++ b/src/qt_gui/translations/id.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Periksa pembaruan + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Bantuan + Dark @@ -975,4 +980,187 @@ Jalur + + CheckUpdate + + + Auto Updater + Pembaruan Otomatis + + + + 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: + Kesalahan jaringan: + + + + Failed to parse update information. + Gagal memparse informasi pembaruan. + + + + No releases found. + Tidak ada rilis ditemukan. + + + + Invalid release data. + Data rilis tidak valid. + + + + No download URL found for the specified asset. + Tidak ada URL unduhan ditemukan untuk aset yang ditentukan. + + + + Your version is already up to date! + Versi Anda sudah terbaru! + + + + Update Available + Pembaruan Tersedia + + + + Current Version + Versi Saat Ini + + + + Latest Version + Versi Terbaru + + + + Do you want to update? + Apakah Anda ingin memperbarui? + + + + Show Changelog + Tampilkan Catatan Perubahan + + + + Auto Update (Check at Startup) + Pembaruan Otomatis (Periksa saat Startup) + + + + Update + Perbarui + + + + No + Tidak + + + + Hide Changelog + Sembunyikan Catatan Perubahan + + + + Changelog Unavailable + Catatan perubahan tidak tersedia + + + + Viewing changelog is only available for the 'unstable' channel. + Pemirsa catatan perubahan hanya tersedia untuk saluran 'unstable'. + + + + Changes + Perubahan + + + + Network error occurred while trying to access the URL + Kesalahan jaringan terjadi saat mencoba mengakses URL + + + + Download Complete + Unduhan Selesai + + + + The update has been downloaded, press OK to install. + Pembaruan telah diunduh, tekan OK untuk menginstal. + + + + Failed to save the update file at + Gagal menyimpan file pembaruan di + + + + Failed to open the ZIP file + Gagal membuka file ZIP + + + + File name is empty. Possibly corrupted ZIP. + Nama file kosong. ZIP mungkin korup. + + + + Failed to create directory + Gagal membuat direktori + + + + Error decompressing file + Kesalahan saat mengekstrak file + + + + Failed to open output file + Gagal membuka file keluaran + + + + Unsupported compression method for file: + Metode kompresi tidak didukung untuk file: + + + + Failed to create TAR extraction directory + Gagal membuat direktori ekstraksi TAR + + + + Failed to extract the TAR file + Gagal mengekstrak file TAR + + + + Starting Update... + Memulai Pembaruan... + + + + Failed to create the update script file + Gagal membuat file skrip pembaruan + + \ No newline at end of file diff --git a/src/qt_gui/translations/it.ts b/src/qt_gui/translations/it.ts index 39cb35dd3..066dc6872 100644 --- a/src/qt_gui/translations/it.ts +++ b/src/qt_gui/translations/it.ts @@ -168,6 +168,11 @@ Boot Game Avvia Gioco + + + Check for Updates + Controlla aggiornamenti + About shadPS4 @@ -308,11 +313,11 @@ Themes Temi - - - About - Info su - + + + Help + Aiuto + Dark @@ -975,4 +980,187 @@ Percorso - + + CheckUpdate + + + Auto Updater + Aggiornamento automatico + + + + 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: + Errore di rete: + + + + Failed to parse update information. + Impossibile analizzare le informazioni di aggiornamento. + + + + No releases found. + Nessuna release trovata. + + + + Invalid release data. + Dati della release non validi. + + + + No download URL found for the specified asset. + Nessun URL di download trovato per l'asset specificato. + + + + Your version is already up to date! + La tua versione è già aggiornata! + + + + Update Available + Aggiornamento disponibile + + + + Current Version + Versione attuale + + + + Latest Version + Ultima versione + + + + Do you want to update? + Vuoi aggiornare? + + + + Show Changelog + Mostra il Changelog + + + + Auto Update (Check at Startup) + Aggiornamento automatico (Controlla all'avvio) + + + + Update + Aggiorna + + + + No + No + + + + Hide Changelog + Nascondi il Changelog + + + + Changelog Unavailable + Changelog non disponibile + + + + Viewing changelog is only available for the 'unstable' channel. + La visualizzazione del changelog è disponibile solo per il canale 'unstable'. + + + + Changes + Modifiche + + + + Network error occurred while trying to access the URL + Si è verificato un errore di rete durante il tentativo di accesso all'URL + + + + Download Complete + Download completato + + + + The update has been downloaded, press OK to install. + L'aggiornamento è stato scaricato, premi OK per installare. + + + + Failed to save the update file at + Impossibile salvare il file di aggiornamento in + + + + Failed to open the ZIP file + Impossibile aprire il file ZIP + + + + File name is empty. Possibly corrupted ZIP. + Il nome del file è vuoto. ZIP potrebbe essere danneggiato. + + + + Failed to create directory + Impossibile creare la directory + + + + Error decompressing file + Errore durante la decompressione del file + + + + Failed to open output file + Impossibile aprire il file di output + + + + Unsupported compression method for file: + Metodo di compressione non supportato per il file: + + + + Failed to create TAR extraction directory + Impossibile creare la directory di estrazione TAR + + + + Failed to extract the TAR file + Impossibile estrarre il file TAR + + + + Starting Update... + Inizio aggiornamento... + + + + Failed to create the update script file + Impossibile creare il file di script di aggiornamento + + + \ No newline at end of file diff --git a/src/qt_gui/translations/ja_JP.ts b/src/qt_gui/translations/ja_JP.ts index 680d4ebd5..6bf762a17 100644 --- a/src/qt_gui/translations/ja_JP.ts +++ b/src/qt_gui/translations/ja_JP.ts @@ -168,6 +168,11 @@ Boot Game ゲームを起動 + + + Check for Updates + 更新を確認する + About shadPS4 @@ -308,11 +313,11 @@ Themes テーマ - - - About - 情報 - + + + Help + ヘルプ + Dark @@ -975,4 +980,187 @@ パス + + CheckUpdate + + + Auto Updater + 自動アップデーター + + + + Error + エラー + + + + Invalid update channel: + 無効なアップデートチャネル: + + + + In updateChannel in config.tml file must contain 'stable' or 'unstable' + config.tmlファイルのupdateChannelには「stable」または「unstable」を含める必要があります + + + + Network error: + ネットワークエラー: + + + + Failed to parse update information. + アップデート情報の解析に失敗しました。 + + + + No releases found. + リリースが見つかりません。 + + + + Invalid release data. + リリースデータが無効です。 + + + + No download URL found for the specified asset. + 指定されたアセットのダウンロードURLが見つかりませんでした。 + + + + Your version is already up to date! + あなたのバージョンはすでに最新です! + + + + Update Available + アップデートがあります + + + + Current Version + 現在のバージョン + + + + Latest Version + 最新バージョン + + + + Do you want to update? + アップデートしますか? + + + + Show Changelog + 変更ログを表示 + + + + Auto Update (Check at Startup) + 自動アップデート(起動時に確認) + + + + Update + アップデート + + + + No + いいえ + + + + Hide Changelog + 変更ログを隠す + + + + Changelog Unavailable + 変更ログは利用できません + + + + Viewing changelog is only available for the 'unstable' channel. + 変更ログの表示は「unstable」チャネルでのみ利用可能です。 + + + + Changes + 変更点 + + + + Network error occurred while trying to access the URL + URLにアクセス中にネットワークエラーが発生しました + + + + Download Complete + ダウンロード完了 + + + + The update has been downloaded, press OK to install. + アップデートがダウンロードされました。インストールするにはOKを押してください。 + + + + Failed to save the update file at + 更新ファイルの保存に失敗しました + + + + Failed to open the ZIP file + ZIPファイルを開くことに失敗しました + + + + File name is empty. Possibly corrupted ZIP. + ファイル名が空です。ZIPが壊れている可能性があります。 + + + + Failed to create directory + ディレクトリの作成に失敗しました + + + + Error decompressing file + ファイルの解凍中にエラーが発生しました + + + + Failed to open output file + 出力ファイルを開くことに失敗しました + + + + Unsupported compression method for file: + ファイルのためのサポートされていない圧縮メソッド: + + + + Failed to create TAR extraction directory + TAR抽出ディレクトリの作成に失敗しました + + + + Failed to extract the TAR file + TARファイルの抽出に失敗しました + + + + Starting Update... + アップデートを開始しています... + + + + Failed to create the update script file + アップデートスクリプトファイルの作成に失敗しました + + \ No newline at end of file diff --git a/src/qt_gui/translations/ko_KR.ts b/src/qt_gui/translations/ko_KR.ts index a167311b9..5c0233edd 100644 --- a/src/qt_gui/translations/ko_KR.ts +++ b/src/qt_gui/translations/ko_KR.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Check for Updates + About shadPS4 @@ -310,8 +315,8 @@ - About - About + Help + Help @@ -975,4 +980,187 @@ Path + + CheckUpdate + + + Auto Updater + Auto Updater + + + + 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: + Network error: + + + + Failed to parse update information. + Failed to parse update information. + + + + No releases found. + No releases found. + + + + Invalid release data. + Invalid release data. + + + + No download URL found for the specified asset. + No download URL found for the specified asset. + + + + Your version is already up to date! + Your version is already up to date! + + + + Update Available + Update Available + + + + Current Version + Current Version + + + + Latest Version + Latest Version + + + + Do you want to update? + Do you want to update? + + + + Show Changelog + Show Changelog + + + + Auto Update (Check at Startup) + Auto Update (Check at Startup) + + + + Update + Update + + + + No + No + + + + Hide Changelog + Hide Changelog + + + + Changelog Unavailable + Changelog Unavailable + + + + Viewing changelog is only available for the 'unstable' channel. + Viewing changelog is only available for the 'unstable' channel. + + + + Changes + Changes + + + + Network error occurred while trying to access the URL + Network error occurred while trying to access the URL + + + + Download Complete + Download Complete + + + + The update has been downloaded, press OK to install. + The update has been downloaded, press OK to install. + + + + Failed to save the update file at + Failed to save the update file at + + + + Failed to open the ZIP file + Failed to open the ZIP file + + + + File name is empty. Possibly corrupted ZIP. + File name is empty. Possibly corrupted ZIP. + + + + Failed to create directory + Failed to create directory + + + + Error decompressing file + Error decompressing file + + + + Failed to open output file + Failed to open output file + + + + Unsupported compression method for file: + Unsupported compression method for file: + + + + Failed to create TAR extraction directory + Failed to create TAR extraction directory + + + + Failed to extract the TAR file + Failed to extract the TAR file + + + + Starting Update... + Starting Update... + + + + Failed to create the update script file + Failed to create the update script file + + \ No newline at end of file diff --git a/src/qt_gui/translations/lt_LT.ts b/src/qt_gui/translations/lt_LT.ts index 2c86ec0a0..49cdbf06b 100644 --- a/src/qt_gui/translations/lt_LT.ts +++ b/src/qt_gui/translations/lt_LT.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Patikrinti atnaujinimus + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Pagalba + Dark @@ -975,4 +980,187 @@ Kelias + + CheckUpdate + + + Auto Updater + Automatinis atnaujinimas + + + + 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: + Tinklo klaida: + + + + Failed to parse update information. + Nepavyko išanalizuoti atnaujinimo informacijos. + + + + No releases found. + Nerasta leidimų. + + + + Invalid release data. + Neteisingi leidimo duomenys. + + + + No download URL found for the specified asset. + Nerasta atsisiuntimo URL nurodytam turtui. + + + + Your version is already up to date! + Jūsų versija jau atnaujinta! + + + + Update Available + Prieinama atnaujinimas + + + + Current Version + Esama versija + + + + Latest Version + Paskutinė versija + + + + Do you want to update? + Ar norite atnaujinti? + + + + Show Changelog + Rodyti pakeitimų sąrašą + + + + Auto Update (Check at Startup) + Automatinis atnaujinimas (Tikrinimas paleidimo metu) + + + + Update + Atnaujinti + + + + No + Ne + + + + Hide Changelog + Slėpti pakeitimų sąrašą + + + + Changelog Unavailable + Pakeitimų sąrašas neprieinamas + + + + Viewing changelog is only available for the 'unstable' channel. + Žiūrėjimas pakeitimų sąrašo galimas tik 'unstable' kanalui. + + + + Changes + Pokyčiai + + + + Network error occurred while trying to access the URL + Tinklo klaida bandant pasiekti URL + + + + Download Complete + Atsisiuntimas baigtas + + + + The update has been downloaded, press OK to install. + Atnaujinimas buvo atsisiųstas, paspauskite OK, kad įdiegtumėte. + + + + Failed to save the update file at + Nepavyko išsaugoti atnaujinimo failo + + + + Failed to open the ZIP file + Nepavyko atidaryti ZIP failo + + + + File name is empty. Possibly corrupted ZIP. + Failo pavadinimas tuščias. Galbūt ZIP sugadintas. + + + + Failed to create directory + Nepavyko sukurti katalogo + + + + Error decompressing file + Klaida išpakuojant failą + + + + Failed to open output file + Nepavyko atidaryti išvesties failo + + + + Unsupported compression method for file: + Nepalaikomas failo suspaudimo metodas: + + + + Failed to create TAR extraction directory + Nepavyko sukurti TAR ištraukimų katalogo + + + + Failed to extract the TAR file + Nepavyko ištraukti TAR failo + + + + Starting Update... + Pradedama atnaujinimas... + + + + Failed to create the update script file + Nepavyko sukurti atnaujinimo scenarijaus failo + + \ No newline at end of file diff --git a/src/qt_gui/translations/nb.ts b/src/qt_gui/translations/nb.ts index b62791e05..df5b5fb21 100644 --- a/src/qt_gui/translations/nb.ts +++ b/src/qt_gui/translations/nb.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Sjekk etter oppdateringer + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Hjelp + Dark @@ -975,4 +980,187 @@ Sti + + CheckUpdate + + + Auto Updater + Automatisk oppdaterer + + + + 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: + Nettverksfeil: + + + + Failed to parse update information. + Kunne ikke analysere oppdateringsinformasjonen. + + + + No releases found. + Ingen utgivelser funnet. + + + + Invalid release data. + Ugyldige utgivelsesdata. + + + + No download URL found for the specified asset. + Ingen nedlastings-URL funnet for den spesifiserte ressursen. + + + + Your version is already up to date! + Din versjon er allerede oppdatert! + + + + Update Available + Oppdatering tilgjengelig + + + + Current Version + Gjeldende versjon + + + + Latest Version + Nyeste versjon + + + + Do you want to update? + Vil du oppdatere? + + + + Show Changelog + Vis endringslogg + + + + Auto Update (Check at Startup) + Automatisk oppdatering (Sjekk ved oppstart) + + + + Update + Oppdater + + + + No + Nei + + + + Hide Changelog + Skjul endringslogg + + + + Changelog Unavailable + Endringslogg utilgjengelig + + + + Viewing changelog is only available for the 'unstable' channel. + Visning av endringslogg er kun tilgjengelig for 'unstable' kanalen. + + + + Changes + Endringer + + + + Network error occurred while trying to access the URL + Nettverksfeil oppstod mens du prøvde å få tilgang til URL + + + + Download Complete + Nedlasting fullført + + + + The update has been downloaded, press OK to install. + Oppdateringen har blitt lastet ned, trykk OK for å installere. + + + + Failed to save the update file at + Kunne ikke lagre oppdateringsfilen på + + + + Failed to open the ZIP file + Kunne ikke åpne ZIP-filen + + + + File name is empty. Possibly corrupted ZIP. + Filnavnet er tomt. Muligens ødelagt ZIP. + + + + Failed to create directory + Kunne ikke opprette katalog + + + + Error decompressing file + Feil ved dekomprimering av fil + + + + Failed to open output file + Kunne ikke åpne utdatafil + + + + Unsupported compression method for file: + Ikke støttet kompresjonsmetode for fil: + + + + Failed to create TAR extraction directory + Kunne ikke opprette TAR-uttrekkskatalog + + + + Failed to extract the TAR file + Kunne ikke trekke ut TAR-filen + + + + Starting Update... + Starter oppdatering... + + + + Failed to create the update script file + Kunne ikke opprette oppdateringsskriptfilen + + \ No newline at end of file diff --git a/src/qt_gui/translations/nl.ts b/src/qt_gui/translations/nl.ts index 3d5edfc5d..1dbeb2e6a 100644 --- a/src/qt_gui/translations/nl.ts +++ b/src/qt_gui/translations/nl.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Controleren op updates + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Help + Dark @@ -975,4 +980,187 @@ Pad + + CheckUpdate + + + Auto Updater + Automatische updater + + + + 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: + Netwerkfout: + + + + Failed to parse update information. + Kon update-informatie niet parseren. + + + + No releases found. + Geen releases gevonden. + + + + Invalid release data. + Ongeldige releasegegevens. + + + + No download URL found for the specified asset. + Geen download-URL gevonden voor het opgegeven bestand. + + + + Your version is already up to date! + Uw versie is al up-to-date! + + + + Update Available + Update beschikbaar + + + + Current Version + Huidige versie + + + + Latest Version + Laatste versie + + + + Do you want to update? + Wilt u updaten? + + + + Show Changelog + Toon changelog + + + + Auto Update (Check at Startup) + Automatische update (Controleer bij opstarten) + + + + Update + Bijwerken + + + + No + Nee + + + + Hide Changelog + Verberg changelog + + + + Changelog Unavailable + Changelog niet beschikbaar + + + + Viewing changelog is only available for the 'unstable' channel. + Weergave van de changelog is alleen beschikbaar voor het 'unstable' kanaal. + + + + Changes + Wijzigingen + + + + Network error occurred while trying to access the URL + Netwerkfout opgetreden tijdens toegang tot de URL + + + + Download Complete + Download compleet + + + + The update has been downloaded, press OK to install. + De update is gedownload, druk op OK om te installeren. + + + + Failed to save the update file at + Kon het updatebestand niet opslaan op + + + + Failed to open the ZIP file + Kon het ZIP-bestand niet openen + + + + File name is empty. Possibly corrupted ZIP. + Bestandsnaam is leeg. Mogelijk beschadigde ZIP. + + + + Failed to create directory + Kon de directory niet maken + + + + Error decompressing file + Fout bij het decomprimeren van het bestand + + + + Failed to open output file + Kon het uitvoerbestand niet openen + + + + Unsupported compression method for file: + Ongesteunde compressiemethode voor bestand: + + + + Failed to create TAR extraction directory + Kon de TAR-uitpakdirectory niet maken + + + + Failed to extract the TAR file + Kon het TAR-bestand niet uitpakken + + + + Starting Update... + Starten van update... + + + + Failed to create the update script file + Kon het update-scriptbestand niet maken + + \ No newline at end of file diff --git a/src/qt_gui/translations/pl_PL.ts b/src/qt_gui/translations/pl_PL.ts index af8330bbd..7299175df 100644 --- a/src/qt_gui/translations/pl_PL.ts +++ b/src/qt_gui/translations/pl_PL.ts @@ -168,6 +168,11 @@ Boot Game Uruchom grę + + + Check for Updates + Sprawdź aktualizacje + About shadPS4 @@ -308,11 +313,11 @@ Themes Motywy - - - About - O programie - + + + Help + Pomoc + Dark @@ -975,4 +980,187 @@ Ścieżka - + + CheckUpdate + + + Auto Updater + Automatyczne aktualizacje + + + + 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: + Błąd sieci: + + + + Failed to parse update information. + Nie udało się sparsować informacji o aktualizacji. + + + + No releases found. + Nie znaleziono wydań. + + + + Invalid release data. + Nieprawidłowe dane wydania. + + + + No download URL found for the specified asset. + Nie znaleziono adresu URL do pobrania dla określonego zasobu. + + + + Your version is already up to date! + Twoja wersja jest już aktualna! + + + + Update Available + Dostępna aktualizacja + + + + Current Version + Aktualna wersja + + + + Latest Version + Ostatnia wersja + + + + Do you want to update? + Czy chcesz zaktualizować? + + + + Show Changelog + Pokaż zmiany + + + + Auto Update (Check at Startup) + Automatyczna aktualizacja (Sprawdź przy uruchomieniu) + + + + Update + Aktualizuj + + + + No + Nie + + + + Hide Changelog + Ukryj zmiany + + + + Changelog Unavailable + Brak zmian do wyświetlenia + + + + Viewing changelog is only available for the 'unstable' channel. + Podgląd zmian jest dostępny tylko dla kanału 'unstable'. + + + + Changes + Zmiany + + + + Network error occurred while trying to access the URL + Błąd sieci wystąpił podczas próby uzyskania dostępu do URL + + + + Download Complete + Pobieranie zakończone + + + + The update has been downloaded, press OK to install. + Aktualizacja została pobrana, naciśnij OK, aby zainstalować. + + + + Failed to save the update file at + Nie udało się zapisać pliku aktualizacji w + + + + Failed to open the ZIP file + Nie udało się otworzyć pliku ZIP + + + + File name is empty. Possibly corrupted ZIP. + Nazwa pliku jest pusta. Możliwe, że ZIP jest uszkodzony. + + + + Failed to create directory + Nie udało się utworzyć katalogu + + + + Error decompressing file + Błąd podczas dekompresji pliku + + + + Failed to open output file + Nie udało się otworzyć pliku wyjściowego + + + + Unsupported compression method for file: + Nieobsługiwana metoda kompresji dla pliku: + + + + Failed to create TAR extraction directory + Nie udało się utworzyć katalogu do rozpakowania TAR + + + + Failed to extract the TAR file + Nie udało się wyodrębnić pliku TAR + + + + Starting Update... + Rozpoczynanie aktualizacji... + + + + Failed to create the update script file + Nie udało się utworzyć pliku skryptu aktualizacji + + + \ No newline at end of file diff --git a/src/qt_gui/translations/pt_BR.ts b/src/qt_gui/translations/pt_BR.ts index e774a30b4..a12ad7809 100644 --- a/src/qt_gui/translations/pt_BR.ts +++ b/src/qt_gui/translations/pt_BR.ts @@ -168,6 +168,11 @@ Boot Game Iniciar Jogo + + + Check for Updates + Verificar atualização + About shadPS4 @@ -310,8 +315,8 @@ - About - Sobre + Help + Ajuda @@ -975,4 +980,187 @@ Diretório + + CheckUpdate + + + Auto Updater + Atualizador automático + + + + 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: + Erro de rede: + + + + Failed to parse update information. + Falha ao analisar as informações de atualização. + + + + No releases found. + Nenhum release encontrado. + + + + Invalid release data. + Dados da release inválidos. + + + + No download URL found for the specified asset. + Nenhuma URL de download encontrada para o asset especificado. + + + + Your version is already up to date! + Sua versão já está atualizada! + + + + Update Available + Atualização disponível + + + + Current Version + Versão atual + + + + Latest Version + Última versão + + + + Do you want to update? + Você quer atualizar? + + + + Show Changelog + Mostrar Changelog + + + + Auto Update (Check at Startup) + Atualização automática (Ao abrir) + + + + Update + Atualizar + + + + No + Não + + + + Hide Changelog + Ocultar Changelog + + + + Changelog Unavailable + Changelog indisponível + + + + Viewing changelog is only available for the 'unstable' channel. + A visualização do changelog está disponível apenas para o canal 'unstable'. + + + + Changes + Alterações + + + + Network error occurred while trying to access the URL + Ocorreu um erro de rede ao tentar acessar o URL + + + + Download Complete + Download Completo + + + + The update has been downloaded, press OK to install. + A atualização foi baixada, pressione OK para instalar. + + + + Failed to save the update file at + Falha ao salvar o arquivo de atualização em + + + + Failed to open the ZIP file + Falha ao abrir o arquivo ZIP + + + + File name is empty. Possibly corrupted ZIP. + O nome do arquivo está vazio. Possivelmente ZIP corrompido. + + + + Failed to create directory + Falha ao criar o diretório + + + + Error decompressing file + Erro ao descompactar arquivo + + + + Failed to open output file + Falha ao abrir o arquivo de saída + + + + Unsupported compression method for file: + Método de compactação não suportado para arquivo: + + + + Failed to create TAR extraction directory + Falha ao criar diretório de extração TAR + + + + Failed to extract the TAR file + Falha ao extrair o arquivo TAR + + + + Starting Update... + Iniciando atualização... + + + + Failed to create the update script file + Falha ao criar o arquivo de script de atualização + + \ No newline at end of file diff --git a/src/qt_gui/translations/ro_RO.ts b/src/qt_gui/translations/ro_RO.ts index 56df113f5..27dca0998 100644 --- a/src/qt_gui/translations/ro_RO.ts +++ b/src/qt_gui/translations/ro_RO.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Verifică actualizările + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Ajutor + Dark @@ -975,4 +980,187 @@ Drum + + CheckUpdate + + + Auto Updater + Actualizator automat + + + + 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: + Eroare de rețea: + + + + Failed to parse update information. + Nu s-au putut analiza informațiile de actualizare. + + + + No releases found. + Nu s-au găsit versiuni. + + + + Invalid release data. + Datele versiunii sunt invalide. + + + + No download URL found for the specified asset. + Nu s-a găsit URL de descărcare pentru resursa specificată. + + + + Your version is already up to date! + Versiunea ta este deja actualizată! + + + + Update Available + Actualizare disponibilă + + + + Current Version + Versiunea curentă + + + + Latest Version + Ultima versiune + + + + Do you want to update? + Doriți să actualizați? + + + + Show Changelog + Afișați jurnalul de modificări + + + + Auto Update (Check at Startup) + Actualizare automată (Verificați la pornire) + + + + Update + Actualizare + + + + No + Nu + + + + Hide Changelog + Ascunde jurnalul de modificări + + + + Changelog Unavailable + Jurnal de modificări indisponibil + + + + Viewing changelog is only available for the 'unstable' channel. + Vizualizarea jurnalului de modificări este disponibilă doar pentru canalul 'unstable'. + + + + Changes + Modificări + + + + Network error occurred while trying to access the URL + A apărut o eroare de rețea în timpul încercării de a accesa URL-ul + + + + Download Complete + Descărcare completă + + + + The update has been downloaded, press OK to install. + Actualizarea a fost descărcată, apăsați OK pentru a instala. + + + + Failed to save the update file at + Nu s-a putut salva fișierul de actualizare la + + + + Failed to open the ZIP file + Nu s-a putut deschide fișierul ZIP + + + + File name is empty. Possibly corrupted ZIP. + Numele fișierului este gol. Posibil ZIP corupt. + + + + Failed to create directory + Nu s-a putut crea directorul + + + + Error decompressing file + Eroare la decompresarea fișierului + + + + Failed to open output file + Nu s-a putut deschide fișierul de ieșire + + + + Unsupported compression method for file: + Metodă de compresie nesuportată pentru fișier: + + + + Failed to create TAR extraction directory + Nu s-a putut crea directorul de extragere TAR + + + + Failed to extract the TAR file + Nu s-a putut extrage fișierul TAR + + + + Starting Update... + Încep actualizarea... + + + + Failed to create the update script file + Nu s-a putut crea fișierul script de actualizare + + \ No newline at end of file diff --git a/src/qt_gui/translations/ru_RU.ts b/src/qt_gui/translations/ru_RU.ts index 1eac3e515..43cb5ec51 100644 --- a/src/qt_gui/translations/ru_RU.ts +++ b/src/qt_gui/translations/ru_RU.ts @@ -168,6 +168,11 @@ Boot Game Запустить игру + + + Check for Updates + Проверить обновления + About shadPS4 @@ -308,11 +313,11 @@ Themes Темы - - - About - Справка - + + + Help + Помощь + Dark @@ -975,4 +980,187 @@ Путь + + CheckUpdate + + + Auto Updater + Автообновление + + + + Error + Ошибка + + + + Invalid update channel: + Недопустимый канал обновления: + + + + In updateChannel in config.tml file must contain 'stable' or 'unstable' + В файле config.tml параметр updateChannel должен содержать 'stable' или 'unstable' + + + + Network error: + Ошибка сети: + + + + Failed to parse update information. + Не удалось разобрать информацию об обновлении. + + + + No releases found. + Нет доступных релизов. + + + + Invalid release data. + Недопустимые данные релиза. + + + + No download URL found for the specified asset. + Не найден URL для загрузки указанного ресурса. + + + + Your version is already up to date! + Ваша версия уже обновлена! + + + + Update Available + Доступно обновление + + + + Current Version + Текущая версия + + + + Latest Version + Последняя версия + + + + Do you want to update? + Вы хотите обновить? + + + + Show Changelog + Показать изменения + + + + Auto Update (Check at Startup) + Автообновление (Проверять при запуске) + + + + Update + Обновить + + + + No + Нет + + + + Hide Changelog + Скрыть изменения + + + + Changelog Unavailable + Изменения недоступны + + + + Viewing changelog is only available for the 'unstable' channel. + Просмотр изменений доступен только для канала 'unstable'. + + + + Changes + Изменения + + + + Network error occurred while trying to access the URL + Произошла ошибка сети при попытке доступа к URL + + + + Download Complete + Скачивание завершено + + + + The update has been downloaded, press OK to install. + Обновление загружено, нажмите OK для установки. + + + + Failed to save the update file at + Не удалось сохранить файл обновления в + + + + Failed to open the ZIP file + Не удалось открыть ZIP файл + + + + File name is empty. Possibly corrupted ZIP. + Имя файла пустое. Возможно, ZIP поврежден. + + + + Failed to create directory + Не удалось создать директорию + + + + Error decompressing file + Ошибка при разархивировании файла + + + + Failed to open output file + Не удалось открыть выходной файл + + + + Unsupported compression method for file: + Неподдерживаемый метод сжатия для файла: + + + + Failed to create TAR extraction directory + Не удалось создать каталог для извлечения TAR + + + + Failed to extract the TAR file + Не удалось извлечь TAR файл + + + + Starting Update... + Начало обновления... + + + + Failed to create the update script file + Не удалось создать файл скрипта обновления + + \ No newline at end of file diff --git a/src/qt_gui/translations/sq.ts b/src/qt_gui/translations/sq.ts index 85110c6ae..1861f5d04 100644 --- a/src/qt_gui/translations/sq.ts +++ b/src/qt_gui/translations/sq.ts @@ -168,6 +168,11 @@ Boot Game Nis Lojën + + + Check for Updates + Kontrolloni për përditësime + About shadPS4 @@ -308,11 +313,11 @@ Themes Motivet - - - About - Rreth - + + + Help + Ndihmë + Dark @@ -975,4 +980,187 @@ Shtegu - + + CheckUpdate + + + Auto Updater + Përditësues automatik + + + + 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: + Gabim rrjeti: + + + + Failed to parse update information. + Deshtoi të analizojë informacionin e përditësimit. + + + + No releases found. + Nuk u gjetën asnjë lëshim. + + + + Invalid release data. + të dhënat e lëshimit janë të pavlefshme. + + + + No download URL found for the specified asset. + Nuk u gjet URL për shkarkim për burimin e specifikuar. + + + + Your version is already up to date! + Versioni juaj është tashmë i përditësuar! + + + + Update Available + Përditësim i disponueshëm + + + + Current Version + Versioni aktual + + + + Latest Version + Versioni më i fundit + + + + Do you want to update? + Donëi të përditësoni? + + + + Show Changelog + Trego ndryshimet + + + + Auto Update (Check at Startup) + Përditësim automatik (Kontrolloni në fillim) + + + + Update + Përditëso + + + + No + Jo + + + + Hide Changelog + Fshih ndryshimet + + + + Changelog Unavailable + Ndryshimet nuk janë të disponueshme + + + + Viewing changelog is only available for the 'unstable' channel. + Shikimi i ndryshimeve është i disponueshëm vetëm për kanalin 'unstable'. + + + + Changes + Ndryshimet + + + + Network error occurred while trying to access the URL + Ka ndodhur një gabim rrjeti gjatë përpjekjes për të aksesuar URL-në + + + + Download Complete + Shkarkimi i përfunduar + + + + The update has been downloaded, press OK to install. + Përditësimi është shkarkuar, shtypni OK për ta instaluar. + + + + Failed to save the update file at + Deshtoi të ruajë skedarin e përditësimit në + + + + Failed to open the ZIP file + Deshtoi të hapë skedarin ZIP + + + + File name is empty. Possibly corrupted ZIP. + Emri i skedarit është bosh. Mund të jetë ZIP i korruptuar. + + + + Failed to create directory + Deshtoi të krijojë direktorinë + + + + Error decompressing file + Gabim gjatë dekompresimit të skedarit + + + + Failed to open output file + Deshtoi të hapë skedarin e daljes + + + + Unsupported compression method for file: + Metodë kompresimi e mbështetur për skedarin: + + + + Failed to create TAR extraction directory + Deshtoi të krijojë direktorinë e ekstraktimit TAR + + + + Failed to extract the TAR file + Deshtoi të nxjerrë skedarin TAR + + + + Starting Update... + Po fillon përditësimi... + + + + Failed to create the update script file + Deshtoi të krijojë skedarin e skriptit të përditësimit + + + \ No newline at end of file diff --git a/src/qt_gui/translations/tr_TR.ts b/src/qt_gui/translations/tr_TR.ts index 83f62c85e..9a66d4231 100644 --- a/src/qt_gui/translations/tr_TR.ts +++ b/src/qt_gui/translations/tr_TR.ts @@ -168,6 +168,11 @@ Boot Game Oyunu Başlat + + + Check for Updates + Güncellemeleri kontrol et + About shadPS4 @@ -308,11 +313,11 @@ Themes Temalar - - - About - Hakkında - + + + Help + Yardım + Dark @@ -700,13 +705,13 @@ - Confirm Delete - Silme Onayı + Delete File + Dosyayı Sil - - Are you sure you want to delete the selected cheat?\n%1 - Seçilen hileyi silmek istediğinizden emin misiniz?\n%1 + + No files selected. + Hiçbir dosya seçilmedi. @@ -902,86 +907,15 @@ Name: İsim: - - - - Version: - Sürüm: - - - - Size: - Boyut: - - - - LangDialog - - - Language Settings - Dil Ayarları - - - - Select Language: - Dil Seçin: - - - - Restart Required - Yeniden Başlatma Gerekiyor - - - - Changes will take effect after restarting the application. - Değişiklikler uygulama yeniden başlatıldığında geçerli olacaktır. - - - - SettingsDialog - - - Settings - Ayarlar - - - - General - Genel - - - - Cheats - Hileler - - - - Update - Güncelleme - - - - Save - Kaydet - - - - Reset to Default - Varsayılana Sıfırla - - - - Apply Changes - Değişiklikleri Uygula Can't apply cheats before the game is started Hileleri oyuna başlamadan önce uygulayamazsınız. - + - SettingsDialog + SettingsDialog Save @@ -1046,4 +980,187 @@ Yol + + CheckUpdate + + + Auto Updater + Otomatik Güncelleyici + + + + 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: + Ağ hatası: + + + + Failed to parse update information. + Güncelleme bilgilerini ayrıştırma başarısız oldu. + + + + No releases found. + Hiçbir sürüm bulunamadı. + + + + Invalid release data. + Geçersiz sürüm verisi. + + + + No download URL found for the specified asset. + Belirtilen varlık için hiçbir indirme URL'si bulunamadı. + + + + Your version is already up to date! + Versiyonunuz zaten güncel! + + + + Update Available + Güncelleme Mevcut + + + + Current Version + Mevcut Versiyon + + + + Latest Version + Son Versiyon + + + + Do you want to update? + Güncellemek istiyor musunuz? + + + + Show Changelog + Değişiklik Günlüğünü Göster + + + + Auto Update (Check at Startup) + Otomatik Güncelleme (Başlangıçta Kontrol Et) + + + + Update + Güncelle + + + + No + Hayır + + + + Hide Changelog + Değişiklik Günlüğünü Gizle + + + + Changelog Unavailable + Değişiklik Günlüğü Mevcut Değil + + + + Viewing changelog is only available for the 'unstable' channel. + Değişiklik günlüğünü görüntüleme yalnızca 'unstable' kanalı için mevcuttur. + + + + Changes + Değişiklikler + + + + Network error occurred while trying to access the URL + URL'ye erişmeye çalışırken bir ağ hatası oluştu + + + + Download Complete + İndirme Tamamlandı + + + + The update has been downloaded, press OK to install. + Güncelleme indirildi, yüklemek için Tamam'a basın. + + + + Failed to save the update file at + Güncelleme dosyası kaydedilemedi + + + + Failed to open the ZIP file + ZIP dosyası açılamadı + + + + File name is empty. Possibly corrupted ZIP. + Dosya adı boş. Muhtemelen ZIP bozuk. + + + + Failed to create directory + Direktör oluşturulamadı + + + + Error decompressing file + Dosyayı açarken hata + + + + Failed to open output file + Çıktı dosyası açılamadı + + + + Unsupported compression method for file: + Dosya için desteklenmeyen sıkıştırma yöntemi: + + + + Failed to create TAR extraction directory + TAR çıkartma dizini oluşturulamadı + + + + Failed to extract the TAR file + TAR dosyası çıkarılamadı + + + + Starting Update... + Güncelleme Başlatılıyor... + + + + Failed to create the update script file + Güncelleme betiği dosyası oluşturulamadı + + \ No newline at end of file diff --git a/src/qt_gui/translations/vi_VN.ts b/src/qt_gui/translations/vi_VN.ts index 017e61af5..2bd9ebe18 100644 --- a/src/qt_gui/translations/vi_VN.ts +++ b/src/qt_gui/translations/vi_VN.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + Kiểm tra bản cập nhật + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + Giúp đỡ + Dark @@ -975,4 +980,187 @@ Đường dẫn + + CheckUpdate + + + Auto Updater + Trình cập nhật tự động + + + + 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: + Lỗi mạng: + + + + Failed to parse update information. + Không thể phân tích thông tin cập nhật. + + + + No releases found. + Không tìm thấy bản phát hành nào. + + + + Invalid release data. + Dữ liệu bản phát hành không hợp lệ. + + + + No download URL found for the specified asset. + Không tìm thấy URL tải xuống cho tài sản đã chỉ định. + + + + Your version is already up to date! + Phiên bản của bạn đã được cập nhật! + + + + Update Available + Có bản cập nhật + + + + Current Version + Phiên bản hiện tại + + + + Latest Version + Phiên bản mới nhất + + + + Do you want to update? + Bạn có muốn cập nhật không? + + + + Show Changelog + Hiện nhật ký thay đổi + + + + Auto Update (Check at Startup) + Cập nhật tự động (Kiểm tra khi khởi động) + + + + Update + Cập nhật + + + + No + Không + + + + Hide Changelog + Ẩn nhật ký thay đổi + + + + Changelog Unavailable + Nhật ký thay đổi không có sẵn + + + + Viewing changelog is only available for the 'unstable' channel. + Việc xem nhật ký thay đổi chỉ khả dụng cho kênh 'unstable'. + + + + Changes + Thay đổi + + + + Network error occurred while trying to access the URL + Xảy ra lỗi mạng khi cố gắng truy cập URL + + + + Download Complete + Tải xuống hoàn tất + + + + The update has been downloaded, press OK to install. + Bản cập nhật đã được tải xuống, nhấn OK để cài đặt. + + + + Failed to save the update file at + Không thể lưu tệp cập nhật tại + + + + Failed to open the ZIP file + Không thể mở tệp ZIP + + + + File name is empty. Possibly corrupted ZIP. + Tên tệp trống. Có thể ZIP bị hỏng. + + + + Failed to create directory + Không thể tạo thư mục + + + + Error decompressing file + Lỗi khi giải nén tệp + + + + Failed to open output file + Không thể mở tệp đầu ra + + + + Unsupported compression method for file: + Phương pháp nén không được hỗ trợ cho tệp: + + + + Failed to create TAR extraction directory + Không thể tạo thư mục giải nén TAR + + + + Failed to extract the TAR file + Không thể giải nén tệp TAR + + + + Starting Update... + Đang bắt đầu cập nhật... + + + + Failed to create the update script file + Không thể tạo tệp kịch bản cập nhật + + \ No newline at end of file diff --git a/src/qt_gui/translations/zh_CN.ts b/src/qt_gui/translations/zh_CN.ts index f8675ed01..5ac475086 100644 --- a/src/qt_gui/translations/zh_CN.ts +++ b/src/qt_gui/translations/zh_CN.ts @@ -168,6 +168,11 @@ Boot Game 启动游戏 + + + Check for Updates + 检查更新 + About shadPS4 @@ -308,11 +313,11 @@ Themes 主题 - - - About - 关于 - + + + Help + 帮助 + Dark @@ -975,4 +980,187 @@ 路径 + + CheckUpdate + + + Auto Updater + 自动更新程序 + + + + Error + 错误 + + + + Invalid update channel: + 无效的更新通道: + + + + In updateChannel in config.tml file must contain 'stable' or 'unstable' + config.tml 文件中的 updateChannel 必须包含 'stable' 或 'unstable' + + + + Network error: + 网络错误: + + + + Failed to parse update information. + 无法解析更新信息。 + + + + No releases found. + 未找到任何发布。 + + + + Invalid release data. + 无效的发布数据。 + + + + No download URL found for the specified asset. + 未找到指定资产的下载 URL。 + + + + Your version is already up to date! + 您的版本已经是最新的! + + + + Update Available + 可用更新 + + + + Current Version + 当前版本 + + + + Latest Version + 最新版本 + + + + Do you want to update? + 您想要更新吗? + + + + Show Changelog + 显示变更日志 + + + + Auto Update (Check at Startup) + 自动更新(启动时检查) + + + + Update + 更新 + + + + No + + + + + Hide Changelog + 隐藏变更日志 + + + + Changelog Unavailable + 变更日志不可用 + + + + Viewing changelog is only available for the 'unstable' channel. + 查看变更日志仅适用于“unstable”通道。 + + + + Changes + 变更 + + + + Network error occurred while trying to access the URL + 尝试访问 URL 时发生网络错误 + + + + Download Complete + 下载完成 + + + + The update has been downloaded, press OK to install. + 更新已下载,请按 OK 安装。 + + + + Failed to save the update file at + 无法保存更新文件到 + + + + Failed to open the ZIP file + 无法打开 ZIP 文件 + + + + File name is empty. Possibly corrupted ZIP. + 文件名为空。可能是损坏的 ZIP。 + + + + Failed to create directory + 无法创建目录 + + + + Error decompressing file + 解压缩文件时出错 + + + + Failed to open output file + 无法打开输出文件 + + + + Unsupported compression method for file: + 文件的压缩方法不受支持: + + + + Failed to create TAR extraction directory + 无法创建 TAR 解压缩目录 + + + + Failed to extract the TAR file + 无法提取 TAR 文件 + + + + Starting Update... + 正在开始更新... + + + + Failed to create the update script file + 无法创建更新脚本文件 + + \ No newline at end of file diff --git a/src/qt_gui/translations/zh_TW.ts b/src/qt_gui/translations/zh_TW.ts index 77fe691fe..d16820b60 100644 --- a/src/qt_gui/translations/zh_TW.ts +++ b/src/qt_gui/translations/zh_TW.ts @@ -168,6 +168,11 @@ Boot Game Boot Game + + + Check for Updates + 檢查更新 + About shadPS4 @@ -308,11 +313,11 @@ Themes Themes - - - About - About - + + + Help + 幫助 + Dark @@ -975,4 +980,187 @@ 路徑 + + CheckUpdate + + + Auto Updater + 自動更新程式 + + + + Error + 錯誤 + + + + Invalid update channel: + 無效的更新通道: + + + + In updateChannel in config.tml file must contain 'stable' or 'unstable' + 在 config.tml 文件的 updateChannel 中必須包含 'stable' 或 'unstable' + + + + Network error: + 網路錯誤: + + + + Failed to parse update information. + 無法解析更新資訊。 + + + + No releases found. + 未找到任何發行版本。 + + + + Invalid release data. + 無效的發行數據。 + + + + No download URL found for the specified asset. + 未找到指定資產的下載 URL。 + + + + Your version is already up to date! + 您的版本已經是最新的! + + + + Update Available + 可用更新 + + + + Current Version + 當前版本 + + + + Latest Version + 最新版本 + + + + Do you want to update? + 您想要更新嗎? + + + + Show Changelog + 顯示變更日誌 + + + + Auto Update (Check at Startup) + 自動更新(啟動時檢查) + + + + Update + 更新 + + + + No + + + + + Hide Changelog + 隱藏變更日誌 + + + + Changelog Unavailable + 變更日誌不可用 + + + + Viewing changelog is only available for the 'unstable' channel. + 查看變更日誌僅適用於 'unstable' 通道。 + + + + Changes + 變更 + + + + Network error occurred while trying to access the URL + 嘗試訪問 URL 時發生網路錯誤 + + + + Download Complete + 下載完成 + + + + The update has been downloaded, press OK to install. + 更新已下載,按 OK 安裝。 + + + + Failed to save the update file at + 無法將更新文件保存到 + + + + Failed to open the ZIP file + 無法打開 ZIP 文件 + + + + File name is empty. Possibly corrupted ZIP. + 文件名為空。可能是損壞的 ZIP。 + + + + Failed to create directory + 無法創建目錄 + + + + Error decompressing file + 解壓文件時出錯 + + + + Failed to open output file + 無法打開輸出文件 + + + + Unsupported compression method for file: + 不支持的文件壓縮方法: + + + + Failed to create TAR extraction directory + 無法創建 TAR 解壓縮目錄 + + + + Failed to extract the TAR file + 無法提取 TAR 文件 + + + + Starting Update... + 正在開始更新... + + + + Failed to create the update script file + 無法創建更新腳本文件 + + \ No newline at end of file