Patch compatible version notice (#1407)
Some checks are pending
Build and Release / reuse (push) Waiting to run
Build and Release / clang-format (push) Waiting to run
Build and Release / get-info (push) Waiting to run
Build and Release / windows-sdl (push) Blocked by required conditions
Build and Release / windows-qt (push) Blocked by required conditions
Build and Release / macos-sdl (push) Blocked by required conditions
Build and Release / macos-qt (push) Blocked by required conditions
Build and Release / linux-sdl (push) Blocked by required conditions
Build and Release / linux-qt (push) Blocked by required conditions
Build and Release / pre-release (push) Blocked by required conditions

* Patch compatible version notice

* +
This commit is contained in:
DanielSvoboda 2024-10-18 12:56:31 -03:00 committed by GitHub
parent a13d1d1ab1
commit 47ba6c6344
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
28 changed files with 629 additions and 38 deletions

View file

@ -32,8 +32,6 @@
#include "common/path_util.h"
#include "core/module.h"
using namespace Common::FS;
CheatsPatches::CheatsPatches(const QString& gameName, const QString& gameSerial,
const QString& gameVersion, const QString& gameSize,
const QPixmap& gameImage, QWidget* parent)
@ -776,6 +774,7 @@ void CheatsPatches::downloadPatches(const QString repository, const bool showMes
// Create the files.json file with the identification of which file to open
createFilesJson(repository);
populateFileListPatches();
compatibleVersionNotice(repository);
} else {
if (showMessageBox) {
QMessageBox::warning(this, tr("Error"),
@ -787,6 +786,84 @@ void CheatsPatches::downloadPatches(const QString repository, const bool showMes
});
}
void CheatsPatches::compatibleVersionNotice(const QString repository) {
QDir patchesDir(Common::FS::GetUserPath(Common::FS::PathType::PatchesDir));
QDir dir = patchesDir.filePath(repository);
QStringList xmlFiles = dir.entryList(QStringList() << "*.xml", QDir::Files);
QSet<QString> appVersionsSet;
foreach (const QString& xmlFile, xmlFiles) {
QFile file(dir.filePath(xmlFile));
if (!file.open(QIODevice::ReadOnly | QIODevice::Text)) {
QMessageBox::warning(this, tr("ERROR"),
QString(tr("Failed to open file:") + "\n%1").arg(xmlFile));
continue;
}
QXmlStreamReader xmlReader(&file);
bool foundMatchingID = false;
while (!xmlReader.atEnd() && !xmlReader.hasError()) {
QXmlStreamReader::TokenType token = xmlReader.readNext();
if (token == QXmlStreamReader::StartElement) {
if (xmlReader.name() == QStringLiteral("ID")) {
QString id = xmlReader.readElementText();
if (id == m_gameSerial) {
foundMatchingID = true;
}
} else if (xmlReader.name() == QStringLiteral("Metadata")) {
if (foundMatchingID) {
QString appVer = xmlReader.attributes().value("AppVer").toString();
if (!appVer.isEmpty()) {
appVersionsSet.insert(appVer);
}
}
}
}
}
if (xmlReader.hasError()) {
QMessageBox::warning(this, tr("ERROR"),
QString(tr("XML ERROR:") + "\n%1").arg(xmlReader.errorString()));
}
if (foundMatchingID) {
QStringList incompatibleVersions;
bool hasMatchingVersion = false;
foreach (const QString& appVer, appVersionsSet) {
if (appVer != m_gameVersion) {
incompatibleVersions.append(appVer);
} else {
hasMatchingVersion = true;
}
}
if (!incompatibleVersions.isEmpty() ||
(hasMatchingVersion && incompatibleVersions.isEmpty())) {
QString message;
if (!incompatibleVersions.isEmpty()) {
QString versionsList = incompatibleVersions.join(", ");
message += QString(tr("The game is in version: %1")).arg(m_gameVersion) + "\n" +
QString(tr("The downloaded patch only works on version: %1"))
.arg(versionsList);
if (hasMatchingVersion) {
message += QString(", %1").arg(m_gameVersion);
}
message += QString("\n" + tr("You may need to update your game."));
}
if (!message.isEmpty()) {
QMessageBox::information(this, tr("Incompatibility Notice"), message);
}
}
}
}
}
void CheatsPatches::createFilesJson(const QString& repository) {
QDir dir(Common::FS::GetUserPath(Common::FS::PathType::PatchesDir));
@ -1126,8 +1203,8 @@ void CheatsPatches::addPatchesToLayout(const QString& filePath) {
}
}
// Remove the item from the list view if no patches were added (the game has patches, but not
// for the current version)
// Remove the item from the list view if no patches were added
// (the game has patches, but not for the current version)
if (!patchAdded) {
QStringListModel* model = qobject_cast<QStringListModel*>(patchesListView->model());
if (model) {
@ -1154,12 +1231,6 @@ void CheatsPatches::updateNoteTextEdit(const QString& patchName) {
QString type = lineObject["Type"].toString();
QString address = lineObject["Address"].toString();
QString patchValue = lineObject["Value"].toString();
// add the values to be modified in instructionsTextEdit
// text.append(QString("\nType: %1\nAddress: %2\n\nValue: %3")
// .arg(type)
// .arg(address)
// .arg(patchValue));
}
text.replace("\\n", "\n");
instructionsTextEdit->setText(text);

View file

@ -32,11 +32,11 @@ public:
const QString& gameSize, const QPixmap& gameImage, QWidget* parent = nullptr);
~CheatsPatches();
// Public Methods
void downloadCheats(const QString& source, const QString& m_gameSerial,
const QString& m_gameVersion, bool showMessageBox);
void downloadPatches(const QString repository, const bool showMessageBox);
void createFilesJson(const QString& repository);
void compatibleVersionNotice(const QString repository);
signals:
void downloadFinished();

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>تم تنزيل التصحيحات بنجاح! تم تنزيل جميع التصحيحات لجميع الألعاب، ولا داعي لتنزيلها بشكل فردي لكل لعبة كما هو الحال مع الغش. إذا لم يظهر التحديث، قد يكون السبب أنه غير متوفر للإصدار وسيريال اللعبة المحدد. قد تحتاج إلى تحديث اللعبة.</translation>
<translation>تم تنزيل التصحيحات بنجاح! تم تنزيل جميع التصحيحات لجميع الألعاب، ولا داعي لتنزيلها بشكل فردي لكل لعبة كما هو الحال مع الغش. إذا لم يظهر التحديث، قد يكون السبب أنه غير متوفر للإصدار وسيريال اللعبة المحدد.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>.HTML فشل في استرجاع صفحة</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>اللعبة في الإصدار: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>الباتش الذي تم تنزيله يعمل فقط على الإصدار: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>قد تحتاج إلى تحديث لعبتك.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>إشعار عدم التوافق</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patcher hentet med succes! Alle patches til alle spil er blevet hentet, der er ikke behov for at hente dem individuelt for hvert spil, som det sker med snyd. Hvis opdateringen ikke vises, kan det være, at den ikke findes for den specifikke serie og version af spillet. Det kan være nødvendigt at opdatere spillet.</translation>
<translation>Patcher hentet med succes! Alle patches til alle spil er blevet hentet, der er ikke behov for at hente dem individuelt for hvert spil, som det sker med snyd. Hvis opdateringen ikke vises, kan det være, at den ikke findes for den specifikke serie og version af spillet.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Kunne ikke hente HTML-side.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Spillet er i version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Den downloadede patch fungerer kun version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Du skal muligvis opdatere dit spil.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Uforenelighedsmeddelelse</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patches erfolgreich heruntergeladen! Alle Patches für alle Spiele wurden heruntergeladen, es ist nicht notwendig, sie einzeln für jedes Spiel herunterzuladen, wie es bei Cheats der Fall ist. Wenn der Patch nicht angezeigt wird, könnte es sein, dass er für die spezifische Seriennummer und Version des Spiels nicht existiert. Möglicherweise müssen Sie das Spiel aktualisieren.</translation>
<translation>Patches erfolgreich heruntergeladen! Alle Patches für alle Spiele wurden heruntergeladen, es ist nicht notwendig, sie einzeln für jedes Spiel herunterzuladen, wie es bei Cheats der Fall ist. Wenn der Patch nicht angezeigt wird, könnte es sein, dass er für die spezifische Seriennummer und Version des Spiels nicht existiert.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Fehler beim Abrufen der HTML-Seite.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Das Spiel ist in der Version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Der heruntergeladene Patch funktioniert nur in der Version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Sie müssen möglicherweise Ihr Spiel aktualisieren.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Inkompatibilitätsbenachrichtigung</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Τα Patches κατεβάστηκαν επιτυχώς! Όλα τα Patches για όλα τα παιχνίδια έχουν κατέβει, δεν είναι απαραίτητο να τα κατεβάσετε ένα-ένα για κάθε παιχνίδι, όπως με τα Cheats. Εάν η ενημέρωση δεν εμφανίζεται, μπορεί να μην υπάρχει για τον συγκεκριμένο σειριακό αριθμό και έκδοση του παιχνιδιού. Μπορεί να χρειαστεί να ενημερώσετε το παιχνίδι.</translation>
<translation>Τα Patches κατεβάστηκαν επιτυχώς! Όλα τα Patches για όλα τα παιχνίδια έχουν κατέβει, δεν είναι απαραίτητο να τα κατεβάσετε ένα-ένα για κάθε παιχνίδι, όπως με τα Cheats. Εάν η ενημέρωση δεν εμφανίζεται, μπορεί να μην υπάρχει για τον συγκεκριμένο σειριακό αριθμό και έκδοση του παιχνιδιού.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Αποτυχία ανάκτησης σελίδας HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Το παιχνίδι είναι στην έκδοση: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Η ληφθείσα ενημέρωση λειτουργεί μόνο στην έκδοση: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Μπορεί να χρειαστεί να ενημερώσετε το παιχνίδι σας.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Ειδοποίηση ασυμβατότητας</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patches Downloaded Successfully! All Patches available for all games have been downloaded, there is no need to download them individually for each game as happens in Cheats. If the patch does not appear, it may be that it does not exist for the specific serial and version of the game. It may be necessary to update the game.</translation>
<translation>Patches Downloaded Successfully! All Patches available for all games have been downloaded, there is no need to download them individually for each game as happens in Cheats. If the patch does not appear, it may be that it does not exist for the specific serial and version of the game.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Failed to retrieve HTML page.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>The game is in version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>The downloaded patch only works on version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>You may need to update your game.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Incompatibility Notice</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>¡Parches descargados exitosamente! Todos los parches disponibles para todos los juegos han sido descargados, no es necesario descargarlos individualmente para cada juego como ocurre con los trucos. Si el parche no aparece, puede ser que no exista para el número de serie y versión específicos del juego. Puede ser necesario actualizar el juego.</translation>
<translation>¡Parches descargados exitosamente! Todos los parches disponibles para todos los juegos han sido descargados, no es necesario descargarlos individualmente para cada juego como ocurre con los trucos. Si el parche no aparece, puede ser que no exista para el número de serie y versión específicos del juego.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Error al recuperar la página HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>El juego está en la versión: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>El parche descargado solo funciona en la versión: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Puede que necesites actualizar tu juego.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Aviso de incompatibilidad</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1021,12 +1021,12 @@
<message>
<location filename="../cheats_patches.cpp" line="762"/>
<source>Download Complete</source>
<translation>پچ ها با موفقیت بارگیری شدند! تمام وصله های موجود برای همه بازی ها دانلود شده اند، نیازی به دانلود جداگانه آنها برای هر بازی نیست، همانطور که در Cheats اتفاق می افتد. اگر پچ ظاهر نشد، ممکن است برای سریال و نسخه خاصی از بازی وجود نداشته باشد. ممکن است نیاز به آپدیت بازی باشد.</translation>
<translation>دانلود کامل شد</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>دانلود با موفقیت به اتمام رسید</translation>
<translation>پچ ها با موفقیت بارگیری شدند! تمام وصله های موجود برای همه بازی ها دانلود شده اند، نیازی به دانلود جداگانه آنها برای هر بازی نیست، همانطور که در Cheats اتفاق می افتد. اگر پچ ظاهر نشد، ممکن است برای سریال و نسخه خاصی از بازی وجود نداشته باشد.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>HTML خطا دربازیابی صفحه</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>بازی در نسخه: %1 است</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>وصله دانلود شده فقط در نسخه: %1 کار می کند</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>شاید لازم باشد بازی خود را به روز کنید.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>اطلاعیه عدم سازگاری</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Korjaukset ladattu onnistuneesti! Kaikki saatavilla olevat korjaukset kaikille peleille on ladattu, eikä niitä tarvitse ladata yksittäin jokaiselle pelille kuten huijauksissa. Jos päivitystä ei näy, se saattaa olla, että sitä ei ole saatavilla tietylle sarjanumerolle ja peliversiolle. Saattaa olla tarpeen päivittää peli.</translation>
<translation>Korjaukset ladattu onnistuneesti! Kaikki saatavilla olevat korjaukset kaikille peleille on ladattu, eikä niitä tarvitse ladata yksittäin jokaiselle pelille kuten huijauksissa. Jos päivitystä ei näy, se saattaa olla, että sitä ei ole saatavilla tietylle sarjanumerolle ja peliversiolle.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>HTML-sivun hakeminen epäonnistui.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Peli on versiossa: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation> ladattu päivitys toimii vain versiossa: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Sinun on ehkä päivitettävä peliäsi.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Yhteensopivuusilmoitus</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patchs téléchargés avec succès ! Tous les patches disponibles pour tous les jeux ont é téléchargés, il n'est pas nécessaire de les télécharger individuellement pour chaque jeu comme c'est le cas pour les Cheats. Si le correctif n'apparaît pas, il se peut qu'il n'existe pas pour le numéro de série et la version spécifiques du jeu. Il peut être nécessaire de mettre à jour le jeu.</translation>
<translation>Patchs téléchargés avec succès ! Tous les patches disponibles pour tous les jeux ont é téléchargés, il n'est pas nécessaire de les télécharger individuellement pour chaque jeu comme c'est le cas pour les Cheats. Si le correctif n'apparaît pas, il se peut qu'il n'existe pas pour le numéro de série et la version spécifiques du jeu.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Échec de la récupération de la page HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Le jeu est en version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Le patch téléchargé ne fonctionne que sur la version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Vous devrez peut-être mettre à jour votre jeu.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Avis d'incompatibilité</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Frissítések sikeresen letöltve! Minden elérhető frissítés letöltésre került, nem szükséges egyesével letölteni őket minden játékhoz, mint a csalások esetében. Ha a javítás nem jelenik meg, lehet, hogy nem létezik a játék adott sorozatszámához és verziójához. Lehet, hogy frissítenie kell a játékot.</translation>
<translation>Frissítések sikeresen letöltve! Minden elérhető frissítés letöltésre került, nem szükséges egyesével letölteni őket minden játékhoz, mint a csalások esetében. Ha a javítás nem jelenik meg, lehet, hogy nem létezik a játék adott sorozatszámához és verziójához.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Nem sikerült HTML oldal lekérése.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>A játék verziója: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>A letöltött javítás csak a(z) %1 verzión működik</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Lehet, hogy frissítened kell a játékodat.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Inkompatibilitási értesítés</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patch Berhasil Diunduh! Semua Patch yang tersedia untuk semua game telah diunduh, tidak perlu mengunduhnya satu per satu seperti yang terjadi pada Cheat. Jika patch tidak muncul, mungkin patch tersebut tidak ada untuk nomor seri dan versi game yang spesifik. Mungkin perlu memperbarui game.</translation>
<translation>Patch Berhasil Diunduh! Semua Patch yang tersedia untuk semua game telah diunduh, tidak perlu mengunduhnya satu per satu seperti yang terjadi pada Cheat. Jika patch tidak muncul, mungkin patch tersebut tidak ada untuk nomor seri dan versi game yang spesifik.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Gagal mengambil halaman HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Permainan berada di versi: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Patch yang diunduh hanya berfungsi pada versi: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Anda mungkin perlu memperbarui permainan Anda.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Pemberitahuan Ketidakcocokan</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patch scaricata con successo! Vengono scaricate tutte le patch disponibili per tutti i giochi, non è necessario scaricarle singolarmente per ogni gioco come nel caso dei trucchi. Se la patch non appare, potrebbe essere che non esista per il numero di serie e la versione specifica del gioco. Potrebbe essere necessario aggiornare il gioco.</translation>
<translation>Patch scaricata con successo! Vengono scaricate tutte le patch disponibili per tutti i giochi, non è necessario scaricarle singolarmente per ogni gioco come nel caso dei trucchi. Se la patch non appare, potrebbe essere che non esista per il numero di serie e la versione specifica del gioco.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Impossibile recuperare la pagina HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Il gioco è nella versione: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>La patch scaricata funziona solo sulla versione: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Potresti aver bisogno di aggiornare il tuo gioco.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Avviso di incompatibilità</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation> </translation>
<translation> </translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>HTMLページの取得に失敗しました</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>: %1 </translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation></translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation></translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patches Downloaded Successfully! All Patches available for all games have been downloaded, there is no need to download them individually for each game as happens in Cheats. If the patch does not appear, it may be that it does not exist for the specific serial and version of the game. It may be necessary to update the game.</translation>
<translation>Patches Downloaded Successfully! All Patches available for all games have been downloaded, there is no need to download them individually for each game as happens in Cheats. If the patch does not appear, it may be that it does not exist for the specific serial and version of the game.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Failed to retrieve HTML page.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>The game is in version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>The downloaded patch only works on version: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>You may need to update your game.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Incompatibility Notice</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Pataisos sėkmingai atsisiųstos! Visos pataisos visiems žaidimams buvo atsisiųstos, nebėra reikalo jas atsisiųsti atskirai kiekvienam žaidimui, kaip tai vyksta su sukčiavimais. Jei pleistras nepasirodo, gali būti, kad jo nėra tam tikram žaidimo serijos numeriui ir versijai. Gali prireikti atnaujinti žaidimą.</translation>
<translation>Pataisos sėkmingai atsisiųstos! Visos pataisos visiems žaidimams buvo atsisiųstos, nebėra reikalo jas atsisiųsti atskirai kiekvienam žaidimui, kaip tai vyksta su sukčiavimais. Jei pleistras nepasirodo, gali būti, kad jo nėra tam tikram žaidimo serijos numeriui ir versijai.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Nepavyko gauti HTML puslapio.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Žaidimas yra versijoje: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Parsisiųstas pataisas veikia tik versijoje: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Gali tekti atnaujinti savo žaidimą.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Suderinamumo pranešimas</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Oppdateringer lastet ned vellykket! Alle oppdateringer tilgjengelige for alle spill har blitt lastet ned, det er ikke nødvendig å laste dem ned individuelt for hvert spill som skjer med jukser. Hvis oppdateringen ikke vises, kan det hende at den ikke finnes for den spesifikke serienummeret og versjonen av spillet. Det kan være nødvendig å oppdatere spillet.</translation>
<translation>Oppdateringer lastet ned vellykket! Alle oppdateringer tilgjengelige for alle spill har blitt lastet ned, det er ikke nødvendig å laste dem ned individuelt for hvert spill som skjer med jukser. Hvis oppdateringen ikke vises, kan det hende at den ikke finnes for den spesifikke serienummeret og versjonen av spillet.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Kunne ikke hente HTML-side.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Spillet er i versjon: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Den nedlastede patchen fungerer bare versjon: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Du kanskje oppdatere spillet ditt.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Inkompatibilitetsvarsel</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patches succesvol gedownload! Alle beschikbare patches voor alle spellen zijn gedownload. Het is niet nodig om ze afzonderlijk te downloaden voor elk spel dat cheats heeft. Als de patch niet verschijnt, kan het zijn dat deze niet bestaat voor het specifieke serienummer en de versie van het spel. Het kan nodig zijn om het spel bij te werken.</translation>
<translation>Patches succesvol gedownload! Alle beschikbare patches voor alle spellen zijn gedownload. Het is niet nodig om ze afzonderlijk te downloaden voor elk spel dat cheats heeft. Als de patch niet verschijnt, kan het zijn dat deze niet bestaat voor het specifieke serienummer en de versie van het spel.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Kan HTML-pagina niet ophalen.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Het spel is in versie: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>De gedownloade patch werkt alleen op versie: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Misschien moet je je spel bijwerken.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Incompatibiliteitsmelding</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Poprawki zostały pomyślnie pobrane! Wszystkie dostępne poprawki dla wszystkich gier zostały pobrane. Nie ma potrzeby pobierania ich osobno dla każdej gry, która ma kody. Jeśli poprawka się nie pojawia, możliwe, że nie istnieje dla konkretnego numeru seryjnego i wersji gry. Może być konieczne zaktualizowanie gry.</translation>
<translation>Poprawki zostały pomyślnie pobrane! Wszystkie dostępne poprawki dla wszystkich gier zostały pobrane. Nie ma potrzeby pobierania ich osobno dla każdej gry, która ma kody. Jeśli poprawka się nie pojawia, możliwe, że nie istnieje dla konkretnego numeru seryjnego i wersji gry.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Nie udało się pobrać strony HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Gra jest w wersji: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Pobrana łatka działa tylko w wersji: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Możesz potrzebować zaktualizować swoją grę.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Powiadomienie o niezgodności</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patches Baixados com Sucesso! Todos os patches disponíveis para todos os jogos foram baixados, não é necessário baixá-los individualmente para cada jogo como acontece com os Cheats. Se o patch não aparecer, pode ser que ele não exista para o número de série e a versão específicos do jogo. Pode ser necessário atualizar o jogo.</translation>
<translation>Patches Baixados com Sucesso! Todos os patches disponíveis para todos os jogos foram baixados, não é necessário baixá-los individualmente para cada jogo como acontece com os Cheats. Se o patch não aparecer, pode ser que ele não exista para o número de série e a versão específicos do jogo.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Falha ao recuperar a página HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>O jogo está na versão: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>O patch baixado funciona na versão: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Talvez você precise atualizar seu jogo.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Aviso de incompatibilidade</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Patches descărcate cu succes! Toate Patches disponibile pentru toate jocurile au fost descărcate; nu este nevoie le descarci individual pentru fiecare joc, așa cum se întâmplă cu Cheats. Dacă patch-ul nu apare, este posibil nu existe pentru seria și versiunea specifică a jocului. Poate fi necesar actualizați jocul.</translation>
<translation>Patches descărcate cu succes! Toate Patches disponibile pentru toate jocurile au fost descărcate; nu este nevoie le descarci individual pentru fiecare joc, așa cum se întâmplă cu Cheats. Dacă patch-ul nu apare, este posibil nu existe pentru seria și versiunea specifică a jocului.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Nu s-a reușit obținerea paginii HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Jocul este în versiunea: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Patch-ul descărcat funcționează doar pe versiunea: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Este posibil trebuiască actualizezi jocul tău.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Avertizare de incompatibilitate</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Патчи успешно скачаны! Все доступные патчи для всех игр были скачаны, нет необходимости скачивать их по отдельности для каждой игры, как это происходит с читами. Если патч не появляется, возможно, его не существует для конкретного серийного номера и версии игры. Возможно, потребуется обновить игру.</translation>
<translation>Патчи успешно скачаны! Все доступные патчи для всех игр были скачаны, нет необходимости скачивать их по отдельности для каждой игры, как это происходит с читами. Если патч не появляется, возможно, его не существует для конкретного серийного номера и версии игры.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Не удалось получить HTML-страницу.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Игра в версии: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Скачанный патч работает только на версии: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Вам может понадобиться обновить игру.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Уведомление о несовместимости</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Arnat u shkarkuan me sukses! gjitha arnat e ofruara për gjitha lojërat janë shkarkuar, nuk ka nevojë t'i shkarkosh ato individualisht për secilën lojë siç ndodh me Mashtrimet. Nëse patch-i nuk shfaqet, mund mos ekzistojë për numrin e serisë dhe versionin specifik lojës. Mund jetë e nevojshme përditësosh lojën.</translation>
<translation>Arnat u shkarkuan me sukses! gjitha arnat e ofruara për gjitha lojërat janë shkarkuar, nuk ka nevojë t'i shkarkosh ato individualisht për secilën lojë siç ndodh me Mashtrimet. Nëse patch-i nuk shfaqet, mund mos ekzistojë për numrin e serisë dhe versionin specifik lojës.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Gjetja e faqes HTML dështoi.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Loja është versionin: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Patch-i i shkarkuar funksionon vetëm versionin: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Ju mund duhet përditësoni lojën tuaj.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Njoftim për papajtueshmëri</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Yamalar başarıyla indirildi! Tüm oyunlar için mevcut tüm yamalar indirildi, her oyun için ayrı ayrı indirme yapmanız gerekmez, hilelerle olduğu gibi. Yamanın görünmemesi durumunda, belirli seri numarası ve oyun sürümü için mevcut olmayabilir. Oyunu güncellemeniz gerekebilir.</translation>
<translation>Yamalar başarıyla indirildi! Tüm oyunlar için mevcut tüm yamalar indirildi, her oyun için ayrı ayrı indirme yapmanız gerekmez, hilelerle olduğu gibi. Yamanın görünmemesi durumunda, belirli seri numarası ve oyun sürümü için mevcut olmayabilir.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>HTML sayfası alınamadı.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Oyun sürümde: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>İndirilen yamanın sadece sürümde çalışıyor: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Oyunuzu güncellemeniz gerekebilir.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Uyumsuzluk Bildirimi</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation>Bản đã tải xuống thành công! Tất cả các bản sẵn cho tất cả các trò chơi đã đưc tải xuống, không cần tải xuống riêng lẻ cho mỗi trò chơi như trong Cheat. Nếu bản không xuất hiện, thể không tồn tại cho số seri phiên bản cụ thể của trò chơi. thể bạn cần phải cập nhật trò chơi.</translation>
<translation>Bản đã tải xuống thành công! Tất cả các bản sẵn cho tất cả các trò chơi đã đưc tải xuống, không cần tải xuống riêng lẻ cho mỗi trò chơi như trong Cheat. Nếu bản không xuất hiện, thể không tồn tại cho số seri phiên bản cụ thể của trò chơi.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation>Không thể lấy trang HTML.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>Trò chơi đang phiên bản: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>Patch đã tải về chỉ hoạt đng trên phiên bản: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation>Bạn thể cần cập nhật trò chơi của mình.</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation>Thông báo không tương thích</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation></translation>
<translation></translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation> HTML </translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation></translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation></translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>

View file

@ -1026,7 +1026,7 @@
<message>
<location filename="../cheats_patches.cpp" line="763"/>
<source>DownloadComplete_MSG</source>
<translation></translation>
<translation></translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="773"/>
@ -1038,6 +1038,26 @@
<source>Failed to retrieve HTML page.</source>
<translation> HTML </translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="850"/>
<source>The game is in version: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="851"/>
<source>The downloaded patch only works on version: %1</source>
<translation>: %1</translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="856"/>
<source>You may need to update your game.</source>
<translation></translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="860"/>
<source>Incompatibility Notice</source>
<translation></translation>
</message>
<message>
<location filename="../cheats_patches.cpp" line="801"/>
<source>Failed to open file:</source>