Merge branch 'shadps4-emu:main' into main

This commit is contained in:
Daniel Nylander 2025-02-09 09:08:15 +01:00 committed by GitHub
commit b6ac9ff836
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
37 changed files with 1690 additions and 366 deletions

View File

@ -1016,7 +1016,7 @@ if (APPLE)
if (ARCHITECTURE STREQUAL "x86_64")
# Reserve system-managed memory space.
target_link_options(shadps4 PRIVATE -Wl,-no_pie,-no_fixup_chains,-no_huge,-pagezero_size,0x4000,-segaddr,TCB_SPACE,0x4000,-segaddr,GUEST_SYSTEM,0x400000,-image_base,0x20000000000)
target_link_options(shadps4 PRIVATE -Wl,-no_pie,-no_fixup_chains,-no_huge,-pagezero_size,0x4000,-segaddr,TCB_SPACE,0x4000,-segaddr,SYSTEM_MANAGED,0x400000,-segaddr,SYSTEM_RESERVED,0x7FFFFC000,-image_base,0x20000000000)
endif()
# Replacement for std::chrono::time_zone

View File

@ -37,6 +37,12 @@ sudo pacman -S base-devel clang git cmake sndio jack2 openal qt6-base qt6-declar
sudo zypper install clang git cmake libasound2 libpulse-devel libsndio7 libjack-devel openal-soft-devel libopenssl-devel zlib-devel libedit-devel systemd-devel libevdev-devel qt6-base-devel qt6-multimedia-devel qt6-svg-devel qt6-linguist-devel qt6-gui-private-devel vulkan-devel vulkan-validationlayers
```
#### NixOS
```
nix-shell shell.nix
```
#### Other Linux distributions
You can try one of two methods:
@ -49,7 +55,7 @@ distrobox create --name archlinux --init --image archlinux:latest
```
and install the dependencies on that container as cited above.
This option is **highly recommended** for NixOS and distributions with immutable/atomic filesystems (example: Fedora Kinoite, SteamOS).
This option is **highly recommended** for distributions with immutable/atomic filesystems (example: Fedora Kinoite, SteamOS).
### Cloning

70
shell.nix Normal file
View File

@ -0,0 +1,70 @@
# SPDX-FileCopyrightText: 2024 shadPS4 Emulator Project
# SPDX-License-Identifier: GPL-2.0-or-later
with import (fetchTarball "https://github.com/nixos/nixpkgs/archive/cfd19cdc54680956dc1816ac577abba6b58b901c.tar.gz") { };
pkgs.mkShell {
name = "shadps4-build-env";
nativeBuildInputs = [
pkgs.llvmPackages_18.clang
pkgs.cmake
pkgs.pkg-config
pkgs.git
];
buildInputs = [
pkgs.alsa-lib
pkgs.libpulseaudio
pkgs.openal
pkgs.openssl
pkgs.zlib
pkgs.libedit
pkgs.udev
pkgs.libevdev
pkgs.SDL2
pkgs.jack2
pkgs.sndio
pkgs.qt6.qtbase
pkgs.qt6.qttools
pkgs.qt6.qtmultimedia
pkgs.vulkan-headers
pkgs.vulkan-utility-libraries
pkgs.vulkan-tools
pkgs.ffmpeg
pkgs.fmt
pkgs.glslang
pkgs.libxkbcommon
pkgs.wayland
pkgs.xorg.libxcb
pkgs.xorg.xcbutil
pkgs.xorg.xcbutilkeysyms
pkgs.xorg.xcbutilwm
pkgs.sdl3
pkgs.stb
pkgs.qt6.qtwayland
pkgs.wayland-protocols
];
shellHook = ''
echo "Entering shadPS4 dev shell"
export QT_QPA_PLATFORM="wayland"
export QT_PLUGIN_PATH="${pkgs.qt6.qtwayland}/lib/qt-6/plugins:${pkgs.qt6.qtbase}/lib/qt-6/plugins"
export QML2_IMPORT_PATH="${pkgs.qt6.qtbase}/lib/qt-6/qml"
export CMAKE_PREFIX_PATH="${pkgs.vulkan-headers}:$CMAKE_PREFIX_PATH"
# OpenGL
export LD_LIBRARY_PATH="${
pkgs.lib.makeLibraryPath [
pkgs.libglvnd
pkgs.vulkan-tools
]
}:$LD_LIBRARY_PATH"
export LDFLAGS="-L${pkgs.llvmPackages_18.libcxx}/lib -lc++"
export LC_ALL="C.UTF-8"
export XAUTHORITY=${builtins.getEnv "XAUTHORITY"}
'';
}

View File

@ -21,7 +21,8 @@
#if defined(__APPLE__) && defined(ARCH_X86_64)
// Reserve space for the system address space using a zerofill section.
asm(".zerofill GUEST_SYSTEM,GUEST_SYSTEM,__guest_system,0xFBFC00000");
asm(".zerofill SYSTEM_MANAGED,SYSTEM_MANAGED,__SYSTEM_MANAGED,0x7FFBFC000");
asm(".zerofill SYSTEM_RESERVED,SYSTEM_RESERVED,__SYSTEM_RESERVED,0x7C0004000");
#endif
namespace Core {

View File

@ -19,27 +19,34 @@ CompatibilityInfoClass::CompatibilityInfoClass()
CompatibilityInfoClass::~CompatibilityInfoClass() = default;
void CompatibilityInfoClass::UpdateCompatibilityDatabase(QWidget* parent, bool forced) {
if (!forced)
if (LoadCompatibilityFile())
return;
QNetworkReply* reply = FetchPage(1);
if (!WaitForReply(reply))
if (!forced && LoadCompatibilityFile())
return;
QProgressDialog dialog(tr("Fetching compatibility data, please wait"), tr("Cancel"), 0, 0,
QUrl url("https://github.com/shadps4-emu/shadps4-game-compatibility/releases/latest/download/"
"compatibility_data.json");
QNetworkRequest request(url);
QNetworkReply* reply = m_network_manager->get(request);
QProgressDialog dialog(tr("Fetching compatibility data, please wait"), tr("Cancel"), 0, 100,
parent);
dialog.setWindowTitle(tr("Loading..."));
dialog.setWindowModality(Qt::WindowModal);
dialog.setMinimumDuration(0);
dialog.setValue(0);
int remaining_pages = 0;
if (reply->hasRawHeader("link")) {
QRegularExpression last_page_re("(\\d+)(?=>; rel=\"last\")");
QRegularExpressionMatch last_page_match =
last_page_re.match(QString(reply->rawHeader("link")));
if (last_page_match.hasMatch()) {
remaining_pages = last_page_match.captured(0).toInt() - 1;
}
}
connect(reply, &QNetworkReply::downloadProgress,
[&dialog](qint64 bytesReceived, qint64 bytesTotal) {
if (bytesTotal > 0) {
dialog.setMaximum(bytesTotal);
dialog.setValue(bytesReceived);
}
});
connect(&dialog, &QProgressDialog::canceled, reply, &QNetworkReply::abort);
QEventLoop loop;
connect(reply, &QNetworkReply::finished, &loop, &QEventLoop::quit);
loop.exec();
if (reply->error() != QNetworkReply::NoError) {
reply->deleteLater();
@ -51,100 +58,23 @@ void CompatibilityInfoClass::UpdateCompatibilityDatabase(QWidget* parent, bool f
return;
}
ExtractCompatibilityInfo(reply->readAll());
QVector<QNetworkReply*> replies(remaining_pages);
QFutureWatcher<void> future_watcher;
for (int i = 0; i < remaining_pages; i++) {
replies[i] = FetchPage(i + 2);
QFile compatibility_file(m_compatibility_filename);
if (!compatibility_file.open(QIODevice::WriteOnly | QIODevice::Truncate | QIODevice::Text)) {
QMessageBox::critical(parent, tr("Error"),
tr("Unable to open compatibility_data.json for writing."));
reply->deleteLater();
return;
}
future_watcher.setFuture(QtConcurrent::map(replies, WaitForReply));
connect(&future_watcher, &QFutureWatcher<void>::finished, [&]() {
for (int i = 0; i < remaining_pages; i++) {
if (replies[i]->bytesAvailable()) {
if (replies[i]->error() == QNetworkReply::NoError) {
ExtractCompatibilityInfo(replies[i]->readAll());
}
replies[i]->deleteLater();
} else {
// This means the request timed out
return;
}
}
// Writes the received data to the file.
QByteArray json_data = reply->readAll();
compatibility_file.write(json_data);
compatibility_file.close();
reply->deleteLater();
QFile compatibility_file(m_compatibility_filename);
if (!compatibility_file.open(QIODevice::WriteOnly | QIODevice::Truncate |
QIODevice::Text)) {
QMessageBox::critical(parent, tr("Error"),
tr("Unable to open compatibility.json for writing."));
return;
}
QJsonDocument json_doc;
m_compatibility_database["version"] = COMPAT_DB_VERSION;
json_doc.setObject(m_compatibility_database);
compatibility_file.write(json_doc.toJson());
compatibility_file.close();
dialog.reset();
});
connect(&future_watcher, &QFutureWatcher<void>::canceled, [&]() {
// Cleanup if user cancels pulling data
for (int i = 0; i < remaining_pages; i++) {
if (!replies[i]->bytesAvailable()) {
replies[i]->deleteLater();
} else if (!replies[i]->isFinished()) {
replies[i]->abort();
}
}
});
connect(&dialog, &QProgressDialog::canceled, &future_watcher, &QFutureWatcher<void>::cancel);
dialog.setRange(0, remaining_pages);
connect(&future_watcher, &QFutureWatcher<void>::progressValueChanged, &dialog,
&QProgressDialog::setValue);
dialog.exec();
LoadCompatibilityFile();
}
QNetworkReply* CompatibilityInfoClass::FetchPage(int page_num) {
QUrl url = QUrl("https://api.github.com/repos/shadps4-emu/shadps4-game-compatibility/issues");
QUrlQuery query;
query.addQueryItem("per_page", QString("100"));
query.addQueryItem(
"tags", QString("status-ingame status-playable status-nothing status-boots status-menus"));
query.addQueryItem("page", QString::number(page_num));
url.setQuery(query);
QNetworkRequest request(url);
QNetworkReply* reply = m_network_manager->get(request);
return reply;
}
bool CompatibilityInfoClass::WaitForReply(QNetworkReply* reply) {
// Returns true if reply succeeded, false if reply timed out
QTimer timer;
timer.setSingleShot(true);
QEventLoop loop;
connect(reply, &QNetworkReply::finished, &loop, &QEventLoop::quit);
connect(&timer, SIGNAL(timeout()), &loop, SLOT(quit()));
timer.start(5000);
loop.exec();
if (timer.isActive()) {
timer.stop();
return true;
} else {
disconnect(reply, SIGNAL(finished()), &loop, SLOT(quit()));
reply->abort();
return false;
}
};
CompatibilityEntry CompatibilityInfoClass::GetCompatibilityInfo(const std::string& serial) {
QString title_id = QString::fromStdString(serial);
if (m_compatibility_database.contains(title_id)) {
@ -160,7 +90,7 @@ CompatibilityEntry CompatibilityInfoClass::GetCompatibilityInfo(const std::strin
QDateTime::fromString(compatibility_entry_obj["last_tested"].toString(),
Qt::ISODate),
compatibility_entry_obj["url"].toString(),
compatibility_entry_obj["issue_number"].toInt()};
compatibility_entry_obj["issue_number"].toString()};
return compatibility_entry;
}
}
@ -193,14 +123,6 @@ bool CompatibilityInfoClass::LoadCompatibilityFile() {
return false;
}
// Check database version
int version_number;
if (json_doc.object()["version"].isDouble()) {
if (json_doc.object()["version"].toInt() < COMPAT_DB_VERSION)
return false;
} else
return false;
m_compatibility_database = json_doc.object();
return true;
}

View File

@ -11,8 +11,6 @@
#include "common/config.h"
#include "core/file_format/psf.h"
static constexpr int COMPAT_DB_VERSION = 1;
enum class CompatibilityStatus {
Unknown,
Nothing,
@ -49,7 +47,7 @@ struct CompatibilityEntry {
QString version;
QDateTime last_tested;
QString url;
int issue_number;
QString issue_number;
};
class CompatibilityInfoClass : public QObject {
@ -82,8 +80,6 @@ public:
CompatibilityEntry GetCompatibilityInfo(const std::string& serial);
const QString GetCompatStatusString(const CompatibilityStatus status);
void ExtractCompatibilityInfo(QByteArray response);
static bool WaitForReply(QNetworkReply* reply);
QNetworkReply* FetchPage(int page_num);
private:
QNetworkAccessManager* m_network_manager;

View File

@ -77,8 +77,10 @@ GameListFrame::GameListFrame(std::shared_ptr<GameInfoClass> game_info_get,
});
connect(this, &QTableWidget::cellClicked, this, [=, this](int row, int column) {
if (column == 2 && !m_game_info->m_games[row].compatibility.url.isEmpty()) {
QDesktopServices::openUrl(QUrl(m_game_info->m_games[row].compatibility.url));
if (column == 2 && m_game_info->m_games[row].compatibility.issue_number != "") {
auto url_issues = "https://github.com/shadps4-emu/shadps4-game-compatibility/issues/";
QDesktopServices::openUrl(
QUrl(url_issues + m_game_info->m_games[row].compatibility.issue_number));
}
});
}
@ -278,7 +280,8 @@ void GameListFrame::SetCompatibilityItem(int row, int column, CompatibilityEntry
tooltip_string = status_explanation;
} else {
tooltip_string =
"<p> <i>" + tr("Click to go to issue") + "</i>" + "<br>" + tr("Last updated") +
"<p> <i>" + tr("Click to see details on github") + "</i>" + "<br>" +
tr("Last updated") +
QString(": %1 (%2)").arg(entry.last_tested.toString("yyyy-MM-dd"), entry.version) +
"<br>" + status_explanation + "</p>";
}
@ -295,6 +298,7 @@ void GameListFrame::SetCompatibilityItem(int row, int column, CompatibilityEntry
dotLabel->setPixmap(circle_pixmap);
QLabel* label = new QLabel(m_compat_info->GetCompatStatusString(entry.status), widget);
this->horizontalHeader()->setSectionResizeMode(2, QHeaderView::ResizeToContents);
label->setStyleSheet("color: white; font-size: 16px; font-weight: bold;");

View File

@ -202,10 +202,14 @@ void MainWindow::CreateDockWindows() {
}
void MainWindow::LoadGameLists() {
// Load compatibility database
if (Config::getCompatibilityEnabled())
m_compat_info->LoadCompatibilityFile();
// Update compatibility database
if (Config::getCheckCompatibilityOnStartup()) {
if (Config::getCheckCompatibilityOnStartup())
m_compat_info->UpdateCompatibilityDatabase(this);
}
// Get game info from game folders.
m_game_info->GetGameInfo(this);
if (isTableList) {

View File

@ -159,14 +159,18 @@ SettingsDialog::SettingsDialog(std::span<const QString> physical_devices,
});
#if (QT_VERSION < QT_VERSION_CHECK(6, 7, 0))
connect(ui->enableCompatibilityCheckBox, &QCheckBox::stateChanged, this, [this](int state) {
connect(ui->enableCompatibilityCheckBox, &QCheckBox::stateChanged, this,
[this, m_compat_info](int state) {
#else
connect(ui->enableCompatibilityCheckBox, &QCheckBox::checkStateChanged, this,
[this](Qt::CheckState state) {
[this, m_compat_info](Qt::CheckState state) {
#endif
Config::setCompatibilityEnabled(state);
emit CompatibilityChanged();
});
Config::setCompatibilityEnabled(state);
if (state) {
m_compat_info->LoadCompatibilityFile();
}
emit CompatibilityChanged();
});
}
// Gui TAB

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ar_AR">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>الرسومات</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>واجهة</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>انقر لرؤية التفاصيل على GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>آخر تحديث</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>جاري جلب بيانات التوافق، يرجى الانتظار</translation>
</message>
<message>
<source>Cancel</source>
<translation>إلغاء</translation>
</message>
<message>
<source>Loading...</source>
<translation>جاري التحميل...</translation>
</message>
<message>
<source>Error</source>
<translation>خطأ</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>تعذر تحديث بيانات التوافق! حاول مرة أخرى لاحقاً.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>تعذر فتح compatibility_data.json للكتابة.</translation>
</message>
<message>
<source>Unknown</source>
<translation>غير معروف</translation>
</message>
<message>
<source>Nothing</source>
<translation>لا شيء</translation>
</message>
<message>
<source>Boots</source>
<translation>أحذية</translation>
</message>
<message>
<source>Menus</source>
<translation>قوائم</translation>
</message>
<message>
<source>Ingame</source>
<translation>داخل اللعبة</translation>
</message>
<message>
<source>Playable</source>
<translation>قابل للعب</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="da_DK">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interface</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Klik for at se detaljer GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Sidst opdateret</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Henter kompatibilitetsdata, vent venligst</translation>
</message>
<message>
<source>Cancel</source>
<translation>Annuller</translation>
</message>
<message>
<source>Loading...</source>
<translation>Indlæser...</translation>
</message>
<message>
<source>Error</source>
<translation>Fejl</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Kan ikke opdatere kompatibilitetsdata! Prøv igen senere.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Kan ikke åbne compatibility_data.json til skrivning.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Ukendt</translation>
</message>
<message>
<source>Nothing</source>
<translation>Intet</translation>
</message>
<message>
<source>Boots</source>
<translation>Støvler</translation>
</message>
<message>
<source>Menus</source>
<translation>Menuer</translation>
</message>
<message>
<source>Ingame</source>
<translation>I spillet</translation>
</message>
<message>
<source>Playable</source>
<translation>Spilbar</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="de">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -653,7 +653,7 @@
<translation>Grafik</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Benutzeroberfläche</translation>
</message>
<message>
@ -1302,6 +1302,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Spiel kann mit spielbarer Leistung und keinen großen Störungen abgeschlossen werden</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Klicken Sie hier, um Details auf GitHub zu sehen</translation>
</message>
<message>
<source>Last updated</source>
<translation>Zuletzt aktualisiert</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1435,6 +1443,30 @@
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Lade Kompatibilitätsdaten, bitte warten</translation>
</message>
<message>
<source>Cancel</source>
<translation>Abbrechen</translation>
</message>
<message>
<source>Loading...</source>
<translation>Lädt...</translation>
</message>
<message>
<source>Error</source>
<translation>Fehler</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Kompatibilitätsdaten konnten nicht aktualisiert werden! Versuchen Sie es später erneut.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Kann compatibility_data.json nicht zum Schreiben öffnen.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unbekannt</translation>
@ -1445,7 +1477,7 @@
</message>
<message>
<source>Boots</source>
<translation>Startet</translation>
<translation>Startet</translation>
</message>
<message>
<source>Menus</source>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="el">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Διεπαφή</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Κάντε κλικ για να δείτε λεπτομέρειες στο GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Τελευταία ενημέρωση</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Φόρτωση δεδομένων συμβατότητας, παρακαλώ περιμένετε</translation>
</message>
<message>
<source>Cancel</source>
<translation>Ακύρωση</translation>
</message>
<message>
<source>Loading...</source>
<translation>Φόρτωση...</translation>
</message>
<message>
<source>Error</source>
<translation>Σφάλμα</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Δεν ήταν δυνατή η ενημέρωση των δεδομένων συμβατότητας! Προσπαθήστε αργότερα.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Αδύνατο να ανοίξετε το compatibility_data.json για εγγραφή.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Άγνωστο</translation>
</message>
<message>
<source>Nothing</source>
<translation>Τίποτα</translation>
</message>
<message>
<source>Boots</source>
<translation>Μπότες</translation>
</message>
<message>
<source>Menus</source>
<translation>Μενού</translation>
</message>
<message>
<source>Ingame</source>
<translation>Εντός παιχνιδιού</translation>
</message>
<message>
<source>Playable</source>
<translation>Παιχνιδεύσιμο</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="en_US">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -637,7 +637,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Gui</translation>
</message>
<message>
@ -1311,6 +1311,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Click to see details on GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Last updated</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1444,6 +1452,30 @@
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Fetching compatibility data, please wait</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancel</translation>
</message>
<message>
<source>Loading...</source>
<translation>Loading...</translation>
</message>
<message>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Unable to update compatibility data! Try again later.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Unable to open compatibility_data.json for writing.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Unknown</translation>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="es_ES">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Gráficos</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interfaz</translation>
</message>
<message>
@ -1294,6 +1294,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Haz clic para ver detalles en GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Última actualización</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1427,6 +1435,30 @@
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Obteniendo datos de compatibilidad, por favor espera</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancelar</translation>
</message>
<message>
<source>Loading...</source>
<translation>Cargando...</translation>
</message>
<message>
<source>Error</source>
<translation>Error</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>¡No se pudo actualizar los datos de compatibilidad! Intenta de nuevo más tarde.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>No se pudo abrir compatibility_data.json para escribir.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Desconocido</translation>
@ -1452,4 +1484,4 @@
<translation>Jugable</translation>
</message>
</context>
</TS>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="fa_IR">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>گرافیک</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>رابط کاربری</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>بازی با عملکرد قابل قبول و بدون اشکالات عمده قابل بازی است.</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>برای مشاهده جزئیات در GitHub کلیک کنید</translation>
</message>
<message>
<source>Last updated</source>
<translation>آخرین بهروزرسانی</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>در حال بارگذاری دادههای سازگاری، لطفاً صبر کنید</translation>
</message>
<message>
<source>Cancel</source>
<translation>لغو</translation>
</message>
<message>
<source>Loading...</source>
<translation>در حال بارگذاری...</translation>
</message>
<message>
<source>Error</source>
<translation>خطا</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>ناتوان از بروزرسانی دادههای سازگاری! لطفاً بعداً دوباره تلاش کنید.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>امکان باز کردن compatibility_data.json برای نوشتن وجود ندارد.</translation>
</message>
<message>
<source>Unknown</source>
<translation>ناشناخته</translation>
</message>
<message>
<source>Nothing</source>
<translation>هیچ چیز</translation>
</message>
<message>
<source>Boots</source>
<translation>چکمهها</translation>
</message>
<message>
<source>Menus</source>
<translation>منوها</translation>
</message>
<message>
<source>Ingame</source>
<translation>داخل بازی</translation>
</message>
<message>
<source>Playable</source>
<translation>قابل بازی</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="fi">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Grafiikka</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Rajapinta</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Pelillä on hyväksyttävä suorituskyky, eikä mitään suuria häiriöitä</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Napsauta nähdäksesi lisätiedot GitHubissa</translation>
</message>
<message>
<source>Last updated</source>
<translation>Viimeksi päivitetty</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Haetaan yhteensopivuustietoja, odota</translation>
</message>
<message>
<source>Cancel</source>
<translation>Peruuta</translation>
</message>
<message>
<source>Loading...</source>
<translation>Ladataan...</translation>
</message>
<message>
<source>Error</source>
<translation>Virhe</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Yhteensopivuustietoja ei voitu päivittää! Yritä myöhemmin uudelleen.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Ei voitu avata compatibility_data.json-tiedostoa kirjoittamista varten.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Tuntematon</translation>
</message>
<message>
<source>Nothing</source>
<translation>Ei mitään</translation>
</message>
<message>
<source>Boots</source>
<translation>Sahat</translation>
</message>
<message>
<source>Menus</source>
<translation>Valikot</translation>
</message>
<message>
<source>Ingame</source>
<translation>Pelin aikana</translation>
</message>
<message>
<source>Playable</source>
<translation>Pelattava</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="fr">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphismes</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interface</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Le jeu peut être terminé avec des performances acceptables et sans problèmes majeurs</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Cliquez pour voir les détails sur GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Dernière mise à jour</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1411,6 +1419,30 @@
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Récupération des données de compatibilité, veuillez patienter</translation>
</message>
<message>
<source>Cancel</source>
<translation>Annuler</translation>
</message>
<message>
<source>Loading...</source>
<translation>Chargement...</translation>
</message>
<message>
<source>Error</source>
<translation>Erreur</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Impossible de mettre à jour les données de compatibilité ! Essayez plus tard.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Impossible d'ouvrir compatibility_data.json en écriture.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Inconnu</translation>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="hu_HU">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Grafika</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Felület</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Kattintson a részletek megtekintéséhez a GitHubon</translation>
</message>
<message>
<source>Last updated</source>
<translation>Utoljára frissítve</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Kompatibilitási adatok betöltése, kérem várjon</translation>
</message>
<message>
<source>Cancel</source>
<translation>Megszakítás</translation>
</message>
<message>
<source>Loading...</source>
<translation>Betöltés...</translation>
</message>
<message>
<source>Error</source>
<translation>Hiba</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Nem sikerült frissíteni a kompatibilitási adatokat! Kérem próbálja újra később.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Nem sikerült megnyitni a compatibility_data.json fájlt írásra.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Ismeretlen</translation>
</message>
<message>
<source>Nothing</source>
<translation>Semmi</translation>
</message>
<message>
<source>Boots</source>
<translation>Csizmák</translation>
</message>
<message>
<source>Menus</source>
<translation>Menük</translation>
</message>
<message>
<source>Ingame</source>
<translation>Játékban</translation>
</message>
<message>
<source>Playable</source>
<translation>Játszható</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="id">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Antarmuka</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Klik untuk melihat detail di GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Terakhir diperbarui</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Memuat data kompatibilitas, harap tunggu</translation>
</message>
<message>
<source>Cancel</source>
<translation>Batal</translation>
</message>
<message>
<source>Loading...</source>
<translation>Memuat...</translation>
</message>
<message>
<source>Error</source>
<translation>Kesalahan</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Tidak dapat memperbarui data kompatibilitas! Coba lagi nanti.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Tidak dapat membuka compatibility_data.json untuk menulis.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Tidak Dikenal</translation>
</message>
<message>
<source>Nothing</source>
<translation>Tidak ada</translation>
</message>
<message>
<source>Boots</source>
<translation>Sepatu Bot</translation>
</message>
<message>
<source>Menus</source>
<translation>Menu</translation>
</message>
<message>
<source>Ingame</source>
<translation>Dalam Permainan</translation>
</message>
<message>
<source>Playable</source>
<translation>Playable</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="it">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Grafica</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interfaccia</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Il gioco può essere completato con buone prestazioni e senza problemi gravi</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Fai clic per vedere i dettagli su GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Ultimo aggiornamento</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Recuperando dati di compatibilità, per favore attendere</translation>
</message>
<message>
<source>Cancel</source>
<translation>Annulla</translation>
</message>
<message>
<source>Loading...</source>
<translation>Caricamento...</translation>
</message>
<message>
<source>Error</source>
<translation>Errore</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Impossibile aggiornare i dati di compatibilità! Riprova più tardi.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Impossibile aprire compatibility_data.json per la scrittura.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Sconosciuto</translation>
</message>
<message>
<source>Nothing</source>
<translation>Niente</translation>
</message>
<message>
<source>Boots</source>
<translation>Stivali</translation>
</message>
<message>
<source>Menus</source>
<translation>Menu</translation>
</message>
<message>
<source>Ingame</source>
<translation>In gioco</translation>
</message>
<message>
<source>Playable</source>
<translation>Giocabile</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ja_JP">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation></translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation></translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation></translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>GitHubをクリックしてください</translation>
</message>
<message>
<source>Last updated</source>
<translation></translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation></translation>
</message>
<message>
<source>Cancel</source>
<translation></translation>
</message>
<message>
<source>Loading...</source>
<translation>...</translation>
</message>
<message>
<source>Error</source>
<translation></translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation></translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>compatibility_data.jsonを開いて書き込むことができませんでした</translation>
</message>
<message>
<source>Unknown</source>
<translation></translation>
</message>
<message>
<source>Nothing</source>
<translation></translation>
</message>
<message>
<source>Boots</source>
<translation></translation>
</message>
<message>
<source>Menus</source>
<translation></translation>
</message>
<message>
<source>Ingame</source>
<translation></translation>
</message>
<message>
<source>Playable</source>
<translation></translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ko_KR">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation></translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>GitHub에서 </translation>
</message>
<message>
<source>Last updated</source>
<translation> </translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation> , </translation>
</message>
<message>
<source>Cancel</source>
<translation></translation>
</message>
<message>
<source>Loading...</source>
<translation> ...</translation>
</message>
<message>
<source>Error</source>
<translation></translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation> ! .</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>compatibility_data.json을 .</translation>
</message>
<message>
<source>Unknown</source>
<translation> </translation>
</message>
<message>
<source>Nothing</source>
<translation></translation>
</message>
<message>
<source>Boots</source>
<translation></translation>
</message>
<message>
<source>Menus</source>
<translation></translation>
</message>
<message>
<source>Ingame</source>
<translation> </translation>
</message>
<message>
<source>Playable</source>
<translation> </translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="it_LT">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interfeisa</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Spustelėkite, kad pamatytumėte detales GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Paskutinį kartą atnaujinta</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Naudojamos suderinamumo duomenis, prašome palaukti</translation>
</message>
<message>
<source>Cancel</source>
<translation>Atšaukti</translation>
</message>
<message>
<source>Loading...</source>
<translation>Kraunama...</translation>
</message>
<message>
<source>Error</source>
<translation>Klaida</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Negalima atnaujinti suderinamumo duomenų! Bandykite vėliau.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Negalima atidaryti compatibility_data.json failo rašymui.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Nežinoma</translation>
</message>
<message>
<source>Nothing</source>
<translation>Nėra</translation>
</message>
<message>
<source>Boots</source>
<translation>Batai</translation>
</message>
<message>
<source>Menus</source>
<translation>Meniu</translation>
</message>
<message>
<source>Ingame</source>
<translation>Žaidime</translation>
</message>
<message>
<source>Playable</source>
<translation>Žaidžiamas</translation>
</message>
</context>
</TS>

View File

@ -1323,8 +1323,8 @@
<translation>Spillet kan fullføres med spillbar ytelse og uten store feil</translation>
</message>
<message>
<source>Click to go to issue</source>
<translation>Klikk for å til rapporten</translation>
<source>Click to see details on github</source>
<translation>Klikk for å se detaljer GitHub</translation>
</message>
<message>
<source>Last updated</source>
@ -1463,6 +1463,30 @@
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Henter kompatibilitetsdata, vennligst vent</translation>
</message>
<message>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
<source>Loading...</source>
<translation>Laster...</translation>
</message>
<message>
<source>Error</source>
<translation>Feil</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Kan ikke oppdatere kompatibilitetsdata! Prøv igjen senere.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Kan ikke åpne compatibility_data.json for skriving.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Ukjent</translation>
@ -1477,7 +1501,7 @@
</message>
<message>
<source>Menus</source>
<translation>Meny</translation>
<translation>Menyene</translation>
</message>
<message>
<source>Ingame</source>
@ -1487,17 +1511,5 @@
<source>Playable</source>
<translation>Spillbar</translation>
</message>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Henter kompatibilitetsdata, vennligst vent</translation>
</message>
<message>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
<source>Loading...</source>
<translation>Laster...</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="nl">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interface</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Klik om details op GitHub te bekijken</translation>
</message>
<message>
<source>Last updated</source>
<translation>Laatst bijgewerkt</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Compatibiliteitsgegevens ophalen, even geduld</translation>
</message>
<message>
<source>Cancel</source>
<translation>Annuleren</translation>
</message>
<message>
<source>Loading...</source>
<translation>Laden...</translation>
</message>
<message>
<source>Error</source>
<translation>Fout</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Kan compatibiliteitsgegevens niet bijwerken! Probeer het later opnieuw.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Kan compatibility_data.json niet openen voor schrijven.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Onbekend</translation>
</message>
<message>
<source>Nothing</source>
<translation>Niets</translation>
</message>
<message>
<source>Boots</source>
<translation>Laarsjes</translation>
</message>
<message>
<source>Menus</source>
<translation>Menu's</translation>
</message>
<message>
<source>Ingame</source>
<translation>In het spel</translation>
</message>
<message>
<source>Playable</source>
<translation>Speelbaar</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="pl_PL">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Grafika</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interfejs</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Grę można ukończyć z grywalną wydajnością i bez większych usterek</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Kliknij, aby zobaczyć szczegóły na GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Ostatnia aktualizacja</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Pobieranie danych o kompatybilności, proszę czekać</translation>
</message>
<message>
<source>Cancel</source>
<translation>Anuluj</translation>
</message>
<message>
<source>Loading...</source>
<translation>Ładowanie...</translation>
</message>
<message>
<source>Error</source>
<translation>Błąd</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Nie można zaktualizować danych o kompatybilności! Spróbuj ponownie później.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Nie można otworzyć pliku compatibility_data.json do zapisu.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Nieznany</translation>
</message>
<message>
<source>Nothing</source>
<translation>Nic</translation>
</message>
<message>
<source>Boots</source>
<translation>Buty</translation>
</message>
<message>
<source>Menus</source>
<translation>Menu</translation>
</message>
<message>
<source>Ingame</source>
<translation>W grze</translation>
</message>
<message>
<source>Playable</source>
<translation>Do grania</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="pt_BR">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Gráficos</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interface</translation>
</message>
<message>
@ -1282,6 +1282,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>O jogo pode ser concluído com desempenho jogável e sem grandes falhas</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Clique para ver detalhes no github</translation>
</message>
<message>
<source>Last updated</source>
<translation>Última atualização</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1413,4 +1421,55 @@
<translation>TB</translation>
</message>
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Obtendo dados de compatibilidade, por favor aguarde</translation>
</message>
<message>
<source>Cancel</source>
<translation>Cancelar</translation>
</message>
<message>
<source>Loading...</source>
<translation>Carregando...</translation>
</message>
<message>
<source>Error</source>
<translation>Erro</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Não foi possível atualizar os dados de compatibilidade! Tente novamente mais tarde.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Não foi possível abrir o compatibility_data.json para escrita.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Desconhecido</translation>
</message>
<message>
<source>Nothing</source>
<translation>Nada</translation>
</message>
<message>
<source>Boots</source>
<translation>Boot</translation>
</message>
<message>
<source>Menus</source>
<translation>Menus</translation>
</message>
<message>
<source>Ingame</source>
<translation>Em jogo</translation>
</message>
<message>
<source>Playable</source>
<translation>Jogável</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ro_RO">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Interfață</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Faceți clic pentru a vedea detalii pe GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Ultima actualizare</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Se colectează datele de compatibilitate, rugăm așteptați</translation>
</message>
<message>
<source>Cancel</source>
<translation>Anulează</translation>
</message>
<message>
<source>Loading...</source>
<translation>Se încarcă...</translation>
</message>
<message>
<source>Error</source>
<translation>Eroare</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Nu se poate actualiza datele de compatibilitate! Încercați din nou mai târziu.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Nu se poate deschide compatibility_data.json pentru scriere.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Necunoscut</translation>
</message>
<message>
<source>Nothing</source>
<translation>Nimic</translation>
</message>
<message>
<source>Boots</source>
<translation>Botine</translation>
</message>
<message>
<source>Menus</source>
<translation>Meniuri</translation>
</message>
<message>
<source>Ingame</source>
<translation>În joc</translation>
</message>
<message>
<source>Playable</source>
<translation>Jucabil</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="ru_RU">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -697,7 +697,7 @@
<translation>Графика</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Интерфейс</translation>
</message>
<message>
@ -1064,10 +1064,6 @@
<source>Nightly</source>
<translation>Nightly</translation>
</message>
<message>
<source>GUI</source>
<translation>Интерфейс</translation>
</message>
<message>
<source>Set the volume of the background music.</source>
<translation>Установите громкость фоновой музыки.</translation>
@ -1422,14 +1418,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Игра может быть пройдена с хорошей производительностью и без серьезных сбоев</translation>
</message>
<message>
<source>Click to go to issue</source>
<translation>Нажмите, чтобы перейти к проблеме</translation>
</message>
<message>
<source>Last updated</source>
<translation>Последнее обновление</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Нажмите, чтобы увидеть детали на GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Последнее обновление</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1562,54 +1558,54 @@
</message>
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Загрузка данных о совместимости, пожалуйста, подождите</translation>
</message>
<message>
<source>Cancel</source>
<translation>Отмена</translation>
</message>
<message>
<source>Loading...</source>
<translation>Загрузка...</translation>
</message>
<message>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Не удалось обновить данные совместимости! Повторите попытку позже.</translation>
</message>
<message>
<source>Unable to open compatibility.json for writing.</source>
<translation>Не удалось открыть файл compatibility.json для записи.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Неизвестно</translation>
</message>
<message>
<source>Nothing</source>
<translation>Ничего</translation>
</message>
<message>
<source>Boots</source>
<translation>Запускается</translation>
</message>
<message>
<source>Menus</source>
<translation>В меню</translation>
</message>
<message>
<source>Ingame</source>
<translation>В игре</translation>
</message>
<message>
<source>Playable</source>
<translation>Играбельно</translation>
</message>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Загрузка данных о совместимости, пожалуйста, подождите</translation>
</message>
<message>
<source>Cancel</source>
<translation>Отмена</translation>
</message>
<message>
<source>Loading...</source>
<translation>Загрузка...</translation>
</message>
<message>
<source>Error</source>
<translation>Ошибка</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Не удалось обновить данные совместимости! Повторите попытку позже.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Не удалось открыть файл compatibility_data.json для записи.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Неизвестно</translation>
</message>
<message>
<source>Nothing</source>
<translation>Ничего</translation>
</message>
<message>
<source>Boots</source>
<translation>Запускается</translation>
</message>
<message>
<source>Menus</source>
<translation>В меню</translation>
</message>
<message>
<source>Ingame</source>
<translation>В игре</translation>
</message>
<message>
<source>Playable</source>
<translation>Играбельно</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="sq">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Grafika</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Ndërfaqja</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Loja mund përfundohet me performancë luajtshme dhe pa probleme mëdha</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Kliko për parë detajet GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Përditësimi i fundit</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Po merrni dhënat e pajtueshmërisë, ju lutemi prisni</translation>
</message>
<message>
<source>Cancel</source>
<translation>Anulo</translation>
</message>
<message>
<source>Loading...</source>
<translation>Po ngarkohet...</translation>
</message>
<message>
<source>Error</source>
<translation>Gabim</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Nuk mund përditësohen dhënat e pajtueshmërisë! Provoni përsëri vonë.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Nuk mund hapet compatibility_data.json për shkruar.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Jo i njohur</translation>
</message>
<message>
<source>Nothing</source>
<translation>Asgjë</translation>
</message>
<message>
<source>Boots</source>
<translation>Çizme</translation>
</message>
<message>
<source>Menus</source>
<translation>Menutë</translation>
</message>
<message>
<source>Ingame</source>
<translation> lojë</translation>
</message>
<message>
<source>Playable</source>
<translation>I luajtshëm</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="sv_SE">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -364,57 +364,6 @@
<translation>Misslyckades med att skapa uppdateringsskriptfil</translation>
</message>
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Hämtar kompatibilitetsdata, vänta</translation>
</message>
<message>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
<source>Loading...</source>
<translation>Läser in...</translation>
</message>
<message>
<source>Error</source>
<translation>Fel</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Kunde inte uppdatera kompatibilitetsdata! Försök igen senare.</translation>
</message>
<message>
<source>Unable to open compatibility.json for writing.</source>
<translation>Kunde inte öppna compatibility.json för skrivning.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Okänt</translation>
</message>
<message>
<source>Nothing</source>
<translation>Ingenting</translation>
</message>
<message>
<source>Boots</source>
<translation>Startar upp</translation>
</message>
<message>
<source>Menus</source>
<translation>Menyer</translation>
</message>
<message>
<source>Ingame</source>
<translation>Problem</translation>
</message>
<message>
<source>Playable</source>
<translation>Spelbart</translation>
</message>
</context>
<context>
<name>ElfViewer</name>
<message>
@ -542,14 +491,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Spelet kan spelas klart med spelbar prestanda och utan större problem</translation>
</message>
<message>
<source>Click to go to issue</source>
<translation>Klicka för att till problem</translation>
</message>
<message>
<source>Last updated</source>
<translation>Senast uppdaterad</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Klicka för att se detaljer GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Senast uppdaterad</translation>
</message>
</context>
<context>
<name>GameListUtils</name>
@ -1181,7 +1130,7 @@
<translation>Grafik</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Gränssnitt</translation>
</message>
<message>
@ -1572,10 +1521,6 @@
<source>browseButton</source>
<translation>Bläddra:\nBläddra efter en mapp att ställa in som sökväg för sparat data</translation>
</message>
<message>
<source>GUI</source>
<translation>Gränssnitt</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>
@ -1584,4 +1529,55 @@
<translation>Trofé-visare</translation>
</message>
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Hämtar kompatibilitetsdata, vänligen vänta</translation>
</message>
<message>
<source>Cancel</source>
<translation>Avbryt</translation>
</message>
<message>
<source>Loading...</source>
<translation>Läser in...</translation>
</message>
<message>
<source>Error</source>
<translation>Fel</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Kunde inte uppdatera kompatibilitetsdata! Försök igen senare.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Kunde inte öppna compatibility_data.json för skrivning.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Okänt</translation>
</message>
<message>
<source>Nothing</source>
<translation>Ingenting</translation>
</message>
<message>
<source>Boots</source>
<translation>Startar upp</translation>
</message>
<message>
<source>Menus</source>
<translation>Menyer</translation>
</message>
<message>
<source>Ingame</source>
<translation>I spelet</translation>
</message>
<message>
<source>Playable</source>
<translation>Spelbart</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="tr_TR">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Grafikler</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Arayüz</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Oyun, oynanabilir performansla tamamlanabilir ve büyük aksaklık yok</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Detayları görmek için GitHuba tıklayın</translation>
</message>
<message>
<source>Last updated</source>
<translation>Son güncelleme</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Uyumluluk verileri alınıyor, lütfen bekleyin</translation>
</message>
<message>
<source>Cancel</source>
<translation>İptal</translation>
</message>
<message>
<source>Loading...</source>
<translation>Yükleniyor...</translation>
</message>
<message>
<source>Error</source>
<translation>Hata</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Uyumluluk verileri güncellenemedi! Lütfen daha sonra tekrar deneyin.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>compatibility_data.json dosyasını yazmak için açamadık.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Bilinmeyen</translation>
</message>
<message>
<source>Nothing</source>
<translation>Hiçbir şey</translation>
</message>
<message>
<source>Boots</source>
<translation>Botlar</translation>
</message>
<message>
<source>Menus</source>
<translation>Menüler</translation>
</message>
<message>
<source>Ingame</source>
<translation>Oyunda</translation>
</message>
<message>
<source>Playable</source>
<translation>Oynanabilir</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="uk_UA">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -1375,6 +1375,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Гру можна пройти з хорошою продуктивністю та без серйозних глюків.</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Натисніть, щоб переглянути деталі на GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Останнє оновлення</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1509,29 +1517,29 @@
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Отримання даних про сумісність. Будь ласка, зачекайте</translation>
</message>
<message>
<source>Cancel</source>
<translation>Відмінити</translation>
</message>
<message>
<source>Loading...</source>
<translation>Завантаження...</translation>
</message>
<message>
<source>Error</source>
<translation>Помилка</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Не вдалося оновити дані про сумісність! Спробуйте ще раз пізніше.</translation>
</message>
<message>
<source>Unable to open compatibility.json for writing.</source>
<translation>Не вдалося відкрити файл compatibility.json для запису.</translation>
</message>
<source>Fetching compatibility data, please wait</source>
<translation>Отримання даних про сумісність. Будь ласка, зачекайте</translation>
</message>
<message>
<source>Cancel</source>
<translation>Відмінити</translation>
</message>
<message>
<source>Loading...</source>
<translation>Завантаження...</translation>
</message>
<message>
<source>Error</source>
<translation>Помилка</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Не вдалося оновити дані про сумісність! Спробуйте ще раз пізніше.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Не вдалося відкрити файл compatibility_data.json для запису.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Невідомо</translation>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="vi_VN">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation>Giao diện</translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation>Nhấp đ xem chi tiết trên GitHub</translation>
</message>
<message>
<source>Last updated</source>
<translation>Cập nhật lần cuối</translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation>Đang tải dữ liệu tương thích, vui lòng chờ</translation>
</message>
<message>
<source>Cancel</source>
<translation>Hủy bỏ</translation>
</message>
<message>
<source>Loading...</source>
<translation>Đang tải...</translation>
</message>
<message>
<source>Error</source>
<translation>Lỗi</translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation>Không thể cập nhật dữ liệu tương thích! Vui lòng thử lại sau.</translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation>Không thể mở compatibility_data.json đ ghi.</translation>
</message>
<message>
<source>Unknown</source>
<translation>Không xác đnh</translation>
</message>
<message>
<source>Nothing</source>
<translation>Không </translation>
</message>
<message>
<source>Boots</source>
<translation>Giày ng</translation>
</message>
<message>
<source>Menus</source>
<translation>Menu</translation>
</message>
<message>
<source>Ingame</source>
<translation>Trong game</translation>
</message>
<message>
<source>Playable</source>
<translation> thể chơi</translation>
</message>
</context>
</TS>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="zh_CN">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -124,6 +124,14 @@
<source>Copy Serial</source>
<translation></translation>
</message>
<message>
<source>Copy Version</source>
<translation></translation>
</message>
<message>
<source>Copy Size</source>
<translation></translation>
</message>
<message>
<source>Copy All</source>
<translation></translation>
@ -554,7 +562,7 @@
</message>
<message>
<source>Show Game Size In List</source>
<translation></translation>
<translation></translation>
</message>
<message>
<source>Show Splash</source>
@ -629,7 +637,7 @@
<translation></translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation></translation>
</message>
<message>
@ -743,12 +751,24 @@
</message>
<message>
<source>Title Music</source>
<translation>Title Music</translation>
<translation></translation>
</message>
<message>
<source>Disable Trophy Pop-ups</source>
<translation></translation>
</message>
<message>
<source>Background Image</source>
<translation></translation>
</message>
<message>
<source>Show Background Image</source>
<translation></translation>
</message>
<message>
<source>Opacity</source>
<translation></translation>
</message>
<message>
<source>Play title music</source>
<translation></translation>
@ -845,6 +865,10 @@
<source>updaterGroupBox</source>
<translation>\nRelease\nNightly</translation>
</message>
<message>
<source>GUIBackgroundImageGroupBox</source>
<translation>\n控制游戏背景图片的可见度</translation>
</message>
<message>
<source>GUIMusicGroupBox</source>
<translation>\n如果游戏支持</translation>
@ -1287,6 +1311,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation> Bug</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation> GitHub </translation>
</message>
<message>
<source>Last updated</source>
<translation></translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1420,6 +1452,30 @@
</context>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation></translation>
</message>
<message>
<source>Cancel</source>
<translation></translation>
</message>
<message>
<source>Loading...</source>
<translation>...</translation>
</message>
<message>
<source>Error</source>
<translation></translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation></translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation> compatibility_data.json </translation>
</message>
<message>
<source>Unknown</source>
<translation></translation>

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE TS>
<TS version="2.1" language="zh_TW">
<!-- SPDX-FileCopyrightText: Copyright 2024 shadPS4 Emulator Project
<!-- SPDX-FileCopyrightText: Copyright 2025 shadPS4 Emulator Project
SPDX-License-Identifier: GPL-2.0-or-later -->
<context>
<name>AboutDialog</name>
@ -629,7 +629,7 @@
<translation>Graphics</translation>
</message>
<message>
<source>Gui</source>
<source>GUI</source>
<translation></translation>
</message>
<message>
@ -1278,6 +1278,14 @@
<source>Game can be completed with playable performance and no major glitches</source>
<translation>Game can be completed with playable performance and no major glitches</translation>
</message>
<message>
<source>Click to see details on github</source>
<translation> GitHub </translation>
</message>
<message>
<source>Last updated</source>
<translation></translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
@ -1409,4 +1417,55 @@
<translation>TB</translation>
</message>
</context>
</TS>
<context>
<name>CompatibilityInfoClass</name>
<message>
<source>Fetching compatibility data, please wait</source>
<translation></translation>
</message>
<message>
<source>Cancel</source>
<translation></translation>
</message>
<message>
<source>Loading...</source>
<translation>...</translation>
</message>
<message>
<source>Error</source>
<translation></translation>
</message>
<message>
<source>Unable to update compatibility data! Try again later.</source>
<translation></translation>
</message>
<message>
<source>Unable to open compatibility_data.json for writing.</source>
<translation> compatibility_data.json </translation>
</message>
<message>
<source>Unknown</source>
<translation></translation>
</message>
<message>
<source>Nothing</source>
<translation></translation>
</message>
<message>
<source>Boots</source>
<translation></translation>
</message>
<message>
<source>Menus</source>
<translation></translation>
</message>
<message>
<source>Ingame</source>
<translation></translation>
</message>
<message>
<source>Playable</source>
<translation></translation>
</message>
</context>
</TS>