Merge remote-tracking branch 'origin/main' into np_signed

This commit is contained in:
mailwl 2025-05-19 09:36:40 +03:00
commit 8d417acc29
38 changed files with 247 additions and 234 deletions

View File

@ -155,7 +155,7 @@ SaveDialogState::SaveDialogState(const OrbisSaveDataDialogParam& param) {
if (item->focusPos != FocusPos::DIRNAME) {
this->focus_pos = item->focusPos;
} else {
} else if (item->focusPosDirName != nullptr) {
this->focus_pos = item->focusPosDirName->data.to_string();
}
this->style = item->itemStyle;

View File

@ -316,7 +316,9 @@ static std::array<std::optional<SaveInstance>, 16> g_mount_slots;
static void initialize() {
g_initialized = true;
g_game_serial = ElfInfo::Instance().GameSerial();
g_game_serial = Common::Singleton<PSF>::Instance()
->GetString("INSTALL_DIR_SAVEDATA")
.value_or(ElfInfo::Instance().GameSerial());
g_fw_ver = ElfInfo::Instance().FirmwareVer();
Backup::StartThread();
}

View File

@ -362,11 +362,8 @@ int MemoryManager::MapMemory(void** out_addr, VAddr virtual_addr, size_t size, M
return ORBIS_KERNEL_ERROR_ENOMEM;
}
// When virtual addr is zero, force it to virtual_base. The guest cannot pass Fixed
// flag so we will take the branch that searches for free (or reserved) mappings.
virtual_addr = (virtual_addr == 0) ? impl.SystemManagedVirtualBase() : virtual_addr;
alignment = alignment > 0 ? alignment : 16_KB;
VAddr mapped_addr = alignment > 0 ? Common::AlignUp(virtual_addr, alignment) : virtual_addr;
// Limit the minumum address to SystemManagedVirtualBase to prevent hardware-specific issues.
VAddr mapped_addr = (virtual_addr == 0) ? impl.SystemManagedVirtualBase() : virtual_addr;
// Fixed mapping means the virtual address must exactly match the provided one.
if (True(flags & MemoryMapFlags::Fixed)) {
@ -396,7 +393,9 @@ int MemoryManager::MapMemory(void** out_addr, VAddr virtual_addr, size_t size, M
// Find the first free area starting with provided virtual address.
if (False(flags & MemoryMapFlags::Fixed)) {
mapped_addr = SearchFree(mapped_addr, size, alignment);
// Provided address needs to be aligned before we can map.
alignment = alignment > 0 ? alignment : 16_KB;
mapped_addr = SearchFree(Common::AlignUp(mapped_addr, alignment), size, alignment);
if (mapped_addr == -1) {
// No suitable memory areas to map to
return ORBIS_KERNEL_ERROR_ENOMEM;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 236 KiB

After

Width:  |  Height:  |  Size: 133 KiB

View File

@ -79,6 +79,11 @@ public:
if (const auto play_time = psf.GetString("PLAY_TIME"); play_time.has_value()) {
game.play_time = *play_time;
}
if (const auto save_dir = psf.GetString("INSTALL_DIR_SAVEDATA"); save_dir.has_value()) {
game.save_dir = *save_dir;
} else {
game.save_dir = game.serial;
}
}
return game;
}

View File

@ -25,6 +25,7 @@ struct GameInfo {
std::string version = "Unknown";
std::string region = "Unknown";
std::string fw = "Unknown";
std::string save_dir = "Unknown";
std::string play_time = "Unknown";
CompatibilityEntry compatibility = CompatibilityEntry{CompatibilityStatus::Unknown};

View File

@ -160,7 +160,7 @@ public:
Common::FS::PathToQString(userPath,
Common::FS::GetUserPath(Common::FS::PathType::UserDir));
QString saveDataPath =
userPath + "/savedata/1/" + QString::fromStdString(m_games[itemID].serial);
userPath + "/savedata/1/" + QString::fromStdString(m_games[itemID].save_dir);
QDir(saveDataPath).mkpath(saveDataPath);
QDesktopServices::openUrl(QUrl::fromLocalFile(saveDataPath));
}

View File

@ -825,6 +825,9 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumHeight">
<number>48</number>
</property>
<property name="focusPolicy">
<enum>Qt::FocusPolicy::NoFocus</enum>
</property>
@ -841,6 +844,9 @@
<verstretch>0</verstretch>
</sizepolicy>
</property>
<property name="minimumHeight">
<number>48</number>
</property>
<property name="focusPolicy">
<enum>Qt::FocusPolicy::NoFocus</enum>
</property>
@ -983,8 +989,8 @@
<widget class="QLabel" name="l_controller">
<property name="maximumSize">
<size>
<width>500</width>
<height>200</height>
<width>424</width>
<height>250</height>
</size>
</property>
<property name="pixmap">

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>قائمة الألعاب</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * إصدار Vulkan غير مدعوم</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>تحميل الشفرات لجميع الألعاب المثبتة</translation>
@ -2051,6 +2047,10 @@ Nightly: نُسخ تحتوي على أحدث الميزات، لكنها أقل
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>افتح مجلد الصور/الأصوات الخاصة بالجوائز المخصصة:\nيمكنك إضافة صور مخصصة للجوائز وصوت مرفق.\nأضف الملفات إلى مجلد custom_trophy بالأسماء التالية:\ntrophy.wav أو trophy.mp3، bronze.png، gold.png، platinum.png، silver.png\nملاحظة: الصوت سيعمل فقط في الإصدارات التي تستخدم QT.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Spiloversigt</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Ikke understøttet Vulkan-version</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Hent snyd til alle installerede spil</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Spieleliste</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Nicht unterstützte Vulkan-Version</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Cheats für alle installierten Spiele herunterladen</translation>
@ -2054,6 +2050,10 @@ Fügen Sie die Dateien dem Ordner custom_trophy mit folgenden Namen hinzu:\n
trophy.wav ODER trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\n
Hinweis: Der Sound funktioniert nur in Qt-Versionen.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Λίστα παιχνιδιών</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Μη υποστηριζόμενη έκδοση Vulkan</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Λήψη Cheats για όλα τα εγκατεστημένα παιχνίδια</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Game List</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Unsupported Vulkan Version</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Download Cheats For All Installed Games</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished"></translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Lista de Juegos</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Versión de Vulkan no soportada</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Descargar trucos para todos los juegos instalados</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Abre la carpeta de trofeos/sonidos personalizados:\nPuedes añadir imágenes y un audio personalizados a los trofeos.\nAñade los archivos a custom_trophy con los siguientes nombres:\ntrophy.wav o trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNota: El sonido sólo funcionará en versiones QT.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>لیست بازی</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation>شما پشتیبانی نمیشود Vulkan ورژن *</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>دانلود چیت برای همه بازی ها</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Pelilista</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Ei Tuettu Vulkan-versio</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Lataa Huijaukset Kaikille Asennetuille Peleille</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Liste de jeux</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Version de Vulkan non prise en charge</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Télécharger les Cheats pour tous les jeux installés</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Ouvrez le dossier des images/sons des trophées personnalisés:\nVous pouvez ajouter des images personnalisées aux trophées et aux sons.\nAjoutez les fichiers à custom_trophy avec les noms suivants:\ntrophy.wav OU trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote : Le son ne fonctionnera que dans les versions QT.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Játéklista</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Nem támogatott Vulkan verzió</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Csalások letöltése minden telepített játékhoz</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Daftar game</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Versi Vulkan Tidak Didukung</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Unduh Cheat Untuk Semua Game Yang Terpasang</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Elenco giochi</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Versione Vulkan non supportata</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Scarica Trucchi per tutti i giochi installati</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Apri la cartella personalizzata delle immagini/suoni trofei:\ possibile aggiungere immagini personalizzate ai trofei e un audio.\nAggiungi i file a custom_trophy con i seguenti nomi:\ntrophy.wav OPPURE trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNota: Il suono funzionerà solo nelle versioni QT.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Versione Vulkan non supportata</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation></translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Vulkanバージョン</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation></translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -7,15 +7,15 @@
<name>AboutDialog</name>
<message>
<source>About shadPS4</source>
<translation type="unfinished">About shadPS4</translation>
<translation>shadPS4</translation>
</message>
<message>
<source>shadPS4 is an experimental open-source emulator for the PlayStation 4.</source>
<translation type="unfinished">shadPS4 is an experimental open-source emulator for the PlayStation 4.</translation>
<translation>shadPS4는 PlayStation 4 .</translation>
</message>
<message>
<source>This software should not be used to play games you have not legally obtained.</source>
<translation type="unfinished">This software should not be used to play games you have not legally obtained.</translation>
<translation> .</translation>
</message>
</context>
<context>
@ -26,238 +26,238 @@
</message>
<message>
<source>Cheats/Patches are experimental.\nUse with caution.\n\nDownload cheats individually by selecting the repository and clicking the download button.\nIn the Patches tab, you can download all patches at once, choose which ones you want to use, and save your selection.\n\nSince we do not develop the Cheats/Patches,\nplease report issues to the cheat author.\n\nCreated a new cheat? Visit:\n</source>
<translation type="unfinished">Cheats/Patches are experimental.\nUse with caution.\n\nDownload cheats individually by selecting the repository and clicking the download button.\nIn the Patches tab, you can download all patches at once, choose which ones you want to use, and save your selection.\n\nSince we do not develop the Cheats/Patches,\nplease report issues to the cheat author.\n\nCreated a new cheat? Visit:\n</translation>
<translation>/ .\n사용 .\n\n치트를 , .\n패치 , .\n\n치트/ ,\n문제가 .\n\n새로운 ? :\n</translation>
</message>
<message>
<source>No Image Available</source>
<translation type="unfinished">No Image Available</translation>
<translation> </translation>
</message>
<message>
<source>Serial: </source>
<translation type="unfinished">Serial: </translation>
<translation>: </translation>
</message>
<message>
<source>Version: </source>
<translation type="unfinished">Version: </translation>
<translation>: </translation>
</message>
<message>
<source>Size: </source>
<translation type="unfinished">Size: </translation>
<translation>: </translation>
</message>
<message>
<source>Select Cheat File:</source>
<translation type="unfinished">Select Cheat File:</translation>
<translation> :</translation>
</message>
<message>
<source>Repository:</source>
<translation type="unfinished">Repository:</translation>
<translation>:</translation>
</message>
<message>
<source>Download Cheats</source>
<translation type="unfinished">Download Cheats</translation>
<translation> </translation>
</message>
<message>
<source>Delete File</source>
<translation type="unfinished">Delete File</translation>
<translation> </translation>
</message>
<message>
<source>No files selected.</source>
<translation type="unfinished">No files selected.</translation>
<translation> .</translation>
</message>
<message>
<source>You can delete the cheats you don&apos;t want after downloading them.</source>
<translation type="unfinished">You can delete the cheats you don&apos;t want after downloading them.</translation>
<translation> .</translation>
</message>
<message>
<source>Do you want to delete the selected file?\n%1</source>
<translation type="unfinished">Do you want to delete the selected file?\n%1</translation>
<translation> ?\n%1</translation>
</message>
<message>
<source>Select Patch File:</source>
<translation type="unfinished">Select Patch File:</translation>
<translation> :</translation>
</message>
<message>
<source>Download Patches</source>
<translation type="unfinished">Download Patches</translation>
<translation> </translation>
</message>
<message>
<source>Save</source>
<translation type="unfinished">Save</translation>
<translation></translation>
</message>
<message>
<source>Cheats</source>
<translation type="unfinished">Cheats</translation>
<translation></translation>
</message>
<message>
<source>Patches</source>
<translation type="unfinished">Patches</translation>
<translation></translation>
</message>
<message>
<source>Error</source>
<translation type="unfinished">Error</translation>
<translation></translation>
</message>
<message>
<source>No patch selected.</source>
<translation type="unfinished">No patch selected.</translation>
<translation> .</translation>
</message>
<message>
<source>Unable to open files.json for reading.</source>
<translation type="unfinished">Unable to open files.json for reading.</translation>
<translation>Files.json을 .</translation>
</message>
<message>
<source>No patch file found for the current serial.</source>
<translation type="unfinished">No patch file found for the current serial.</translation>
<translation> .</translation>
</message>
<message>
<source>Unable to open the file for reading.</source>
<translation type="unfinished">Unable to open the file for reading.</translation>
<translation> .</translation>
</message>
<message>
<source>Unable to open the file for writing.</source>
<translation type="unfinished">Unable to open the file for writing.</translation>
<translation> .</translation>
</message>
<message>
<source>Failed to parse XML: </source>
<translation type="unfinished">Failed to parse XML: </translation>
<translation>XML : </translation>
</message>
<message>
<source>Success</source>
<translation type="unfinished">Success</translation>
<translation></translation>
</message>
<message>
<source>Options saved successfully.</source>
<translation type="unfinished">Options saved successfully.</translation>
<translation> .</translation>
</message>
<message>
<source>Invalid Source</source>
<translation type="unfinished">Invalid Source</translation>
<translation> </translation>
</message>
<message>
<source>The selected source is invalid.</source>
<translation type="unfinished">The selected source is invalid.</translation>
<translation> .</translation>
</message>
<message>
<source>File Exists</source>
<translation type="unfinished">File Exists</translation>
<translation> </translation>
</message>
<message>
<source>File already exists. Do you want to replace it?</source>
<translation type="unfinished">File already exists. Do you want to replace it?</translation>
<translation> . ?</translation>
</message>
<message>
<source>Failed to save file:</source>
<translation type="unfinished">Failed to save file:</translation>
<translation> :</translation>
</message>
<message>
<source>Failed to download file:</source>
<translation type="unfinished">Failed to download file:</translation>
<translation> :</translation>
</message>
<message>
<source>Cheats Not Found</source>
<translation type="unfinished">Cheats Not Found</translation>
<translation> </translation>
</message>
<message>
<source>No Cheats found for this game in this version of the selected repository,try another repository or a different version of the game.</source>
<translation type="unfinished">No Cheats found for this game in this version of the selected repository,try another repository or a different version of the game.</translation>
<translation> . .</translation>
</message>
<message>
<source>Cheats Downloaded Successfully</source>
<translation type="unfinished">Cheats Downloaded Successfully</translation>
<translation> </translation>
</message>
<message>
<source>You have successfully downloaded the cheats for this version of the game from the selected repository. You can try downloading from another repository, if it is available it will also be possible to use it by selecting the file from the list.</source>
<translation type="unfinished">You have successfully downloaded the cheats for this version of the game from the selected repository. You can try downloading from another repository, if it is available it will also be possible to use it by selecting the file from the list.</translation>
<translation> . , .</translation>
</message>
<message>
<source>Failed to save:</source>
<translation type="unfinished">Failed to save:</translation>
<translation> :</translation>
</message>
<message>
<source>Failed to download:</source>
<translation type="unfinished">Failed to download:</translation>
<translation> :</translation>
</message>
<message>
<source>Download Complete</source>
<translation type="unfinished">Download Complete</translation>
<translation> </translation>
</message>
<message>
<source>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.</source>
<translation type="unfinished">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>
<translation> ! , . , .</translation>
</message>
<message>
<source>Failed to parse JSON data from HTML.</source>
<translation type="unfinished">Failed to parse JSON data from HTML.</translation>
<translation>HTML에서 JSON .</translation>
</message>
<message>
<source>Failed to retrieve HTML page.</source>
<translation type="unfinished">Failed to retrieve HTML page.</translation>
<translation>HTML .</translation>
</message>
<message>
<source>The game is in version: %1</source>
<translation type="unfinished">The game is in version: %1</translation>
<translation> : %1</translation>
</message>
<message>
<source>The downloaded patch only works on version: %1</source>
<translation type="unfinished">The downloaded patch only works on version: %1</translation>
<translation> %1 .</translation>
</message>
<message>
<source>You may need to update your game.</source>
<translation type="unfinished">You may need to update your game.</translation>
<translation> .</translation>
</message>
<message>
<source>Incompatibility Notice</source>
<translation type="unfinished">Incompatibility Notice</translation>
<translation> </translation>
</message>
<message>
<source>Failed to open file:</source>
<translation type="unfinished">Failed to open file:</translation>
<translation> :</translation>
</message>
<message>
<source>XML ERROR:</source>
<translation type="unfinished">XML ERROR:</translation>
<translation>XML :</translation>
</message>
<message>
<source>Failed to open files.json for writing</source>
<translation type="unfinished">Failed to open files.json for writing</translation>
<translation>files.json </translation>
</message>
<message>
<source>Author: </source>
<translation type="unfinished">Author: </translation>
<translation>: </translation>
</message>
<message>
<source>Directory does not exist:</source>
<translation type="unfinished">Directory does not exist:</translation>
<translation> :</translation>
</message>
<message>
<source>Failed to open files.json for reading.</source>
<translation type="unfinished">Failed to open files.json for reading.</translation>
<translation>files.json .</translation>
</message>
<message>
<source>Name:</source>
<translation type="unfinished">Name:</translation>
<translation>:</translation>
</message>
<message>
<source>Can&apos;t apply cheats before the game is started</source>
<translation type="unfinished">Can&apos;t apply cheats before the game is started</translation>
<translation> </translation>
</message>
<message>
<source>Close</source>
<translation type="unfinished">Close</translation>
<translation></translation>
</message>
</context>
<context>
<name>CheckUpdate</name>
<message>
<source>Auto Updater</source>
<translation type="unfinished">Auto Updater</translation>
<translation> </translation>
</message>
<message>
<source>Error</source>
<translation type="unfinished">Error</translation>
<translation></translation>
</message>
<message>
<source>Network error:</source>
<translation type="unfinished">Network error:</translation>
<translation> :</translation>
</message>
<message>
<source>The Auto Updater allows up to 60 update checks per hour.\nYou have reached this limit. Please try again later.</source>
@ -265,91 +265,91 @@
</message>
<message>
<source>Failed to parse update information.</source>
<translation type="unfinished">Failed to parse update information.</translation>
<translation> .</translation>
</message>
<message>
<source>No pre-releases found.</source>
<translation type="unfinished">No pre-releases found.</translation>
<translation> .</translation>
</message>
<message>
<source>Invalid release data.</source>
<translation type="unfinished">Invalid release data.</translation>
<translation> .</translation>
</message>
<message>
<source>No download URL found for the specified asset.</source>
<translation type="unfinished">No download URL found for the specified asset.</translation>
<translation> URL을 .</translation>
</message>
<message>
<source>Your version is already up to date!</source>
<translation type="unfinished">Your version is already up to date!</translation>
<translation> !</translation>
</message>
<message>
<source>Update Available</source>
<translation type="unfinished">Update Available</translation>
<translation> </translation>
</message>
<message>
<source>Update Channel</source>
<translation type="unfinished">Update Channel</translation>
<translation> </translation>
</message>
<message>
<source>Current Version</source>
<translation type="unfinished">Current Version</translation>
<translation> </translation>
</message>
<message>
<source>Latest Version</source>
<translation type="unfinished">Latest Version</translation>
<translation> </translation>
</message>
<message>
<source>Do you want to update?</source>
<translation type="unfinished">Do you want to update?</translation>
<translation>?</translation>
</message>
<message>
<source>Show Changelog</source>
<translation type="unfinished">Show Changelog</translation>
<translation> </translation>
</message>
<message>
<source>Check for Updates at Startup</source>
<translation type="unfinished">Check for Updates at Startup</translation>
<translation> </translation>
</message>
<message>
<source>Update</source>
<translation type="unfinished">Update</translation>
<translation></translation>
</message>
<message>
<source>No</source>
<translation type="unfinished">No</translation>
<translation></translation>
</message>
<message>
<source>Hide Changelog</source>
<translation type="unfinished">Hide Changelog</translation>
<translation> </translation>
</message>
<message>
<source>Changes</source>
<translation type="unfinished">Changes</translation>
<translation> </translation>
</message>
<message>
<source>Network error occurred while trying to access the URL</source>
<translation type="unfinished">Network error occurred while trying to access the URL</translation>
<translation>URL에 </translation>
</message>
<message>
<source>Download Complete</source>
<translation type="unfinished">Download Complete</translation>
<translation> </translation>
</message>
<message>
<source>The update has been downloaded, press OK to install.</source>
<translation type="unfinished">The update has been downloaded, press OK to install.</translation>
<translation> . .</translation>
</message>
<message>
<source>Failed to save the update file at</source>
<translation type="unfinished">Failed to save the update file at</translation>
<translation> </translation>
</message>
<message>
<source>Starting Update...</source>
<translation type="unfinished">Starting Update...</translation>
<translation> ...</translation>
</message>
<message>
<source>Failed to create the update script file</source>
<translation type="unfinished">Failed to create the update script file</translation>
<translation> </translation>
</message>
</context>
<context>
@ -407,83 +407,83 @@
<name>ControlSettings</name>
<message>
<source>Configure Controls</source>
<translation type="unfinished">Configure Controls</translation>
<translation> </translation>
</message>
<message>
<source>D-Pad</source>
<translation type="unfinished">D-Pad</translation>
<translation>D-</translation>
</message>
<message>
<source>Up</source>
<translation type="unfinished">Up</translation>
<translation></translation>
</message>
<message>
<source>Left</source>
<translation type="unfinished">Left</translation>
<translation></translation>
</message>
<message>
<source>Right</source>
<translation type="unfinished">Right</translation>
<translation></translation>
</message>
<message>
<source>Down</source>
<translation type="unfinished">Down</translation>
<translation></translation>
</message>
<message>
<source>Left Stick Deadzone (def:2 max:127)</source>
<translation type="unfinished">Left Stick Deadzone (def:2 max:127)</translation>
<translation> (기본값:2 최대값:127)</translation>
</message>
<message>
<source>Left Deadzone</source>
<translation type="unfinished">Left Deadzone</translation>
<translation> </translation>
</message>
<message>
<source>Left Stick</source>
<translation type="unfinished">Left Stick</translation>
<translation> </translation>
</message>
<message>
<source>Config Selection</source>
<translation type="unfinished">Config Selection</translation>
<translation> </translation>
</message>
<message>
<source>Common Config</source>
<translation type="unfinished">Common Config</translation>
<translation> </translation>
</message>
<message>
<source>Use per-game configs</source>
<translation type="unfinished">Use per-game configs</translation>
<translation> </translation>
</message>
<message>
<source>L1 / LB</source>
<translation type="unfinished">L1 / LB</translation>
<translation>L1 / LB</translation>
</message>
<message>
<source>L2 / LT</source>
<translation type="unfinished">L2 / LT</translation>
<translation>L2 / LT</translation>
</message>
<message>
<source>Back</source>
<translation type="unfinished">Back</translation>
<translation></translation>
</message>
<message>
<source>R1 / RB</source>
<translation type="unfinished">R1 / RB</translation>
<translation>R1 / RB</translation>
</message>
<message>
<source>R2 / RT</source>
<translation type="unfinished">R2 / RT</translation>
<translation>R2 / RT</translation>
</message>
<message>
<source>L3</source>
<translation type="unfinished">L3</translation>
<translation>L3</translation>
</message>
<message>
<source>Options / Start</source>
<translation type="unfinished">Options / Start</translation>
<translation> / </translation>
</message>
<message>
<source>R3</source>
<translation type="unfinished">R3</translation>
<translation>R3</translation>
</message>
<message>
<source>Face Buttons</source>
@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation type="unfinished">Game List</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation type="unfinished">Download Cheats For All Installed Games</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Žaidimų sąrašas</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Nepalaikoma Vulkan versija</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Atsisiųsti sukčiavimus visiems įdiegtiems žaidimams</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Spilliste</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Ustøttet Vulkan-versjon</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Last ned juks for alle installerte spill</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Åpne mappa med tilpassede bilder og lyder for trofé:\nDu kan legge til tilpassede bilder til trofeer og en lyd.\nLegg filene til custom_trophy med følgende navn:\ntrophy.wav ELLER trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nMerk: Lyden avspilles kun i Qt-versjonen.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Lijst met spellen</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Niet ondersteunde Vulkan-versie</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Download cheats voor alle geïnstalleerde spellen</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Lista gier</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Nieobsługiwana wersja Vulkan</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Pobierz kody do wszystkich zainstalowanych gier</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Otwórz niestandardowy folder obrazów/dźwięków:\nMożesz dodać własne obrazy dla trofeów i ich dźwięki.\nDodaj pliki do custom_trophy o następujących nazwach:\ntrophy.wav LUB trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nUwaga: Dźwięki działają tylko w wersji QT.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Lista de Jogos</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Versão Vulkan não suportada</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Baixar Trapaças para Todos os Jogos Instalados</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Abrir a pasta de imagens e sons de troféus personalizados:\nVocê pode adicionar imagens personalizadas aos troféus e um áudio.\nAdicione os arquivos na pasta custom_trophy com os seguintes nomes:\ntrophy.wav OU trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nObservação: O som funcionará apenas em versões Qt.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Lista de Jogos</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Versão do Vulkan não suportada</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Transferir Cheats para Todos os Jogos Instalados</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Abra a pasta de imagens/sons de troféus personalizados:\nPoderá adicionar imagens personalizadas aos troféus e um áudio.\nAdicione os arquivos na pasta custom_trophy com os seguintes nomes:\ntrophy.mp3 ou trophy.wav, bronze.png, gold.png, platinum.png, silver.png\nObservação: O som funcionará apenas nas versões Qt.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Lista jocurilor</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Versiune Vulkan nesuportată</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Descarcă Cheats pentru toate jocurile instalate</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Список игр</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Неподдерживаемая версия Vulkan</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Скачать читы для всех установленных игр</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Открыть папку с пользовательскими изображениями/звуками трофеев:\nВы можете добавить пользовательские изображения к трофеям и аудио.\обавьте файлы в custom_trophy со следующими именами:\ntrophy.wav ИЛИ trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\римечание: звук будет работать только в QT-версии.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation type="unfinished">Game List</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation type="unfinished">Download Cheats For All Installed Games</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Lista e lojërave</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Version i pambështetur i Vulkan</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Shkarko mashtrime për gjitha lojërat e instaluara</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Hap dosjen e imazheve/tingujve trofeve personalizuar:\nMund shtosh imazhe personalizuara për trofetë dhe një audio.\nShto skedarët dosjen custom_trophy me emrat vijojnë:\ntrophy.wav ose trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nShënim: Tingulli do punojë vetëm versionet QT.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Spellista</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Vulkan-versionen stöds inte</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Hämta fusk för alla installerade spel</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Öppna mappen för anpassade trofébilder/ljud:\nDu kan lägga till egna bilder till troféerna och ett ljud.\nLägg till filerna i custom_trophy med följande namn:\ntrophy.wav ELLER trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nObservera: Ljudet fungerar endast i QT-versioner.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Oyun Listesi</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Desteklenmeyen Vulkan Sürümü</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Tüm Yüklenmiş Oyunlar İçin Hileleri İndir</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Özel kupa görüntüleri/sesleri klasörünü :\nKupalara özel görüntüler ve sesler ekleyebilirsiniz.\nDosyaları aşağıdaki adlarla custom_trophy'ye ekleyin:\ntrophy.wav ya da trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNot: Ses yalnızca QT sürümlerinde çalışacaktır.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Список ігор</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Непідтримувана версія Vulkan</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Завантажити чити для усіх встановлених ігор</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>Відкрити папку користувацьких зображень трофеїв/звуків:\nВи можете додати користувацькі зображення до трофеїв та звук.\одайте файли до теки custom_trophy з такими назвами:\ntrophy.wav АБО trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\римітка: Звук буде працювати лише у версіях ShadPS4 з графічним інтерфейсом.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation>Danh sách trò chơi</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Phiên bản Vulkan không đưc hỗ trợ</translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation>Tải xuống cheat cho tất cả các trò chơi đã cài đt</translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation type="unfinished">Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation></translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Vulkan </translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation></translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>/\n您可以自定义奖杯图像和声音\n将文件添加到 custom_trophy \ntrophy.wav trophy.mp3bronze.pnggold.pngplatinum.pngsilver.png\n注意 QT </translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Vulkan </translation>
</message>
</context>
<context>
<name>TrophyViewer</name>

View File

@ -1347,10 +1347,6 @@
<source>Game List</source>
<translation></translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation> * Vulkan </translation>
</message>
<message>
<source>Download Cheats For All Installed Games</source>
<translation></translation>
@ -2050,6 +2046,10 @@
<source>Open the custom trophy images/sounds folder:\nYou can add custom images to the trophies and an audio.\nAdd the files to custom_trophy with the following names:\ntrophy.wav OR trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nNote: The sound will only work in QT versions.</source>
<translation>/\n您可以將自訂影像新增至獎盃和音訊 \n將檔案加入 custom_tropy\ntropy.wav OR trophy.mp3bronze.pnggold.pngplatinum.pngsilver.png\n注意 QT </translation>
</message>
<message>
<source> * Unsupported Vulkan Version</source>
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
</message>
</context>
<context>
<name>TrophyViewer</name>