mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-07-27 04:25:12 +00:00
Merge remote-tracking branch 'origin/main' into np_signed
This commit is contained in:
commit
8d417acc29
@ -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;
|
||||
|
@ -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();
|
||||
}
|
||||
|
@ -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 |
@ -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;
|
||||
}
|
||||
|
@ -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};
|
||||
|
@ -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));
|
||||
}
|
||||
|
@ -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">
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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:\nÈ 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>
|
||||
|
@ -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>
|
||||
|
@ -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't want after downloading them.</source>
|
||||
<translation type="unfinished">You can delete the cheats you don'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't apply cheats before the game is started</source>
|
||||
<translation type="unfinished">Can'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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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>
|
||||
|
@ -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.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>
|
||||
|
@ -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>
|
||||
|
@ -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 të 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 të trofeve të personalizuar:\nMund të shtosh imazhe të personalizuara për trofetë dhe një audio.\nShto skedarët në dosjen custom_trophy me emrat që vijojnë:\ntrophy.wav ose trophy.mp3, bronze.png, gold.png, platinum.png, silver.png\nShënim: Tingulli do të punojë vetëm në versionet QT.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> * Unsupported Vulkan Version</source>
|
||||
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrophyViewer</name>
|
||||
|
@ -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>
|
||||
|
@ -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ü aç:\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>
|
||||
|
@ -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.mp3, bronze.png, gold.png, platinum.png, silver.png\nПримітка: Звук буде працювати лише у версіях ShadPS4 з графічним інтерфейсом.</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> * Unsupported Vulkan Version</source>
|
||||
<translation type="unfinished"> * Unsupported Vulkan Version</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrophyViewer</name>
|
||||
|
@ -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>
|
||||
|
@ -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.mp3、bronze.png、gold.png、platinum.png、silver.png。\n注意:自定义声音只能在 QT 版本中生效。</translation>
|
||||
</message>
|
||||
<message>
|
||||
<source> * Unsupported Vulkan Version</source>
|
||||
<translation> * 不支持的 Vulkan 版本</translation>
|
||||
</message>
|
||||
</context>
|
||||
<context>
|
||||
<name>TrophyViewer</name>
|
||||
|
@ -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.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>
|
||||
|
Loading…
Reference in New Issue
Block a user