diff --git a/.github/linux-appimage-qt.sh b/.github/linux-appimage-qt.sh
index 870172457..203d214e3 100755
--- a/.github/linux-appimage-qt.sh
+++ b/.github/linux-appimage-qt.sh
@@ -19,8 +19,12 @@ chmod a+x linuxdeploy-x86_64.AppImage
chmod a+x linuxdeploy-plugin-qt-x86_64.AppImage
chmod a+x linuxdeploy-plugin-checkrt-x86_64.sh
+
# Build AppImage
./linuxdeploy-x86_64.AppImage --appdir AppDir
./linuxdeploy-plugin-checkrt-x86_64.sh --appdir AppDir
+
+cp -a "$GITHUB_WORKSPACE/build/translations" AppDir/usr/bin
+
./linuxdeploy-x86_64.AppImage --appdir AppDir -d "$GITHUB_WORKSPACE"/.github/shadps4.desktop -e "$GITHUB_WORKSPACE"/build/shadps4 -i "$GITHUB_WORKSPACE"/.github/shadps4.png --plugin qt --output appimage
mv Shadps4-x86_64.AppImage Shadps4-qt.AppImage
diff --git a/.github/workflows/linux-qt.yml b/.github/workflows/linux-qt.yml
index 5611ae50f..26b80d683 100644
--- a/.github/workflows/linux-qt.yml
+++ b/.github/workflows/linux-qt.yml
@@ -23,7 +23,7 @@ jobs:
- name: Install misc packages
run: >
- sudo apt-get update && sudo apt install libx11-dev libxext-dev libwayland-dev libfuse2 clang build-essential qt6-base-dev
+ sudo apt-get update && sudo apt install libx11-dev libxext-dev libwayland-dev libfuse2 clang build-essential qt6-base-dev qt6-tools-dev
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DENABLE_QT_GUI=ON
diff --git a/.github/workflows/macos-qt.yml b/.github/workflows/macos-qt.yml
index 4b3672dff..def98ea34 100644
--- a/.github/workflows/macos-qt.yml
+++ b/.github/workflows/macos-qt.yml
@@ -38,7 +38,7 @@ jobs:
host: mac
target: desktop
arch: clang_64
- archives: qtbase
+ archives: qtbase qttools
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_OSX_ARCHITECTURES=x86_64 -DENABLE_QT_GUI=ON
@@ -50,6 +50,7 @@ jobs:
run: |
mkdir upload
mv ${{github.workspace}}/build/shadps4.app upload
+ mv ${{github.workspace}}/build/translations upload
macdeployqt upload/shadps4.app
tar cf shadps4-macos-qt.tar.gz -C upload .
diff --git a/.github/workflows/windows-qt.yml b/.github/workflows/windows-qt.yml
index 06a16eb5b..70c33ebe9 100644
--- a/.github/workflows/windows-qt.yml
+++ b/.github/workflows/windows-qt.yml
@@ -28,7 +28,7 @@ jobs:
host: windows
target: desktop
arch: win64_msvc2019_64
- archives: qtbase
+ archives: qtbase qttools
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -T ClangCL -DENABLE_QT_GUI=ON
@@ -40,6 +40,7 @@ jobs:
run: |
mkdir upload
move build/Release/shadPS4.exe upload
+ move build/translations upload
windeployqt --dir upload upload/shadPS4.exe
- name: Upload executable
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0ff00d6f5..721f11287 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -113,11 +113,27 @@ add_subdirectory(externals)
include_directories(src)
if(ENABLE_QT_GUI)
- find_package(Qt6 REQUIRED COMPONENTS Widgets Concurrent)
+ find_package(Qt6 REQUIRED COMPONENTS Widgets Concurrent LinguistTools)
qt_standard_project_setup()
set(CMAKE_AUTORCC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTOUIC ON)
+
+ set(QT_TRANSLATIONS "${PROJECT_SOURCE_DIR}/src/qt_gui/translations")
+ file(GLOB_RECURSE TRANSLATIONS_TS ${QT_TRANSLATIONS}/*.ts)
+
+ set_source_files_properties(${TRANSLATIONS_TS} PROPERTIES OUTPUT_LOCATION "${CMAKE_CURRENT_BINARY_DIR}/translations")
+ qt_add_translation(TRANSLATIONS_QM ${TRANSLATIONS_TS})
+
+ set(TRANSLATIONS_QRC ${CMAKE_CURRENT_BINARY_DIR}/translations/translations.qrc)
+ file(WRITE ${TRANSLATIONS_QRC} "\n")
+ foreach (QM ${TRANSLATIONS_QM})
+ get_filename_component(QM_FILE ${QM} NAME)
+ file(APPEND ${TRANSLATIONS_QRC} "${QM_FILE}\n")
+ endforeach (QM)
+ file(APPEND ${TRANSLATIONS_QRC} "")
+
+ qt_add_resources(TRANSLATIONS ${TRANSLATIONS_QRC})
endif()
set(AUDIO_CORE src/audio_core/sdl_audio.cpp
@@ -574,6 +590,7 @@ set(QT_GUI src/qt_gui/about_dialog.cpp
src/qt_gui/main.cpp
${EMULATOR}
${RESOURCE_FILES}
+ ${TRANSLATIONS}
)
endif()
diff --git a/src/common/config.cpp b/src/common/config.cpp
index ddd1d3257..0659a987f 100644
--- a/src/common/config.cpp
+++ b/src/common/config.cpp
@@ -45,6 +45,7 @@ u32 m_window_size_H = 720;
std::vector m_pkg_viewer;
std::vector m_elf_viewer;
std::vector m_recent_files;
+std::string emulator_language = "en";
// Settings
u32 m_language = 1; // english
@@ -242,6 +243,10 @@ void setRecentFiles(const std::vector& recentFiles) {
m_recent_files = recentFiles;
}
+void setEmulatorLanguage(std::string language) {
+ emulator_language = language;
+}
+
u32 getMainWindowGeometryX() {
return main_window_geometry_x;
}
@@ -291,6 +296,10 @@ std::vector getRecentFiles() {
return m_recent_files;
}
+std::string getEmulatorLanguage() {
+ return emulator_language;
+}
+
u32 GetLanguage() {
return m_language;
}
@@ -368,6 +377,7 @@ void load(const std::filesystem::path& path) {
m_elf_viewer = toml::find_or>(gui, "elfDirs", {});
m_recent_files = toml::find_or>(gui, "recentFiles", {});
m_table_mode = toml::find_or(gui, "gameTableMode", 0);
+ emulator_language = toml::find_or(gui, "emulatorLanguage", "en");
}
if (data.contains("Settings")) {
@@ -430,6 +440,7 @@ void save(const std::filesystem::path& path) {
data["GUI"]["pkgDirs"] = m_pkg_viewer;
data["GUI"]["elfDirs"] = m_elf_viewer;
data["GUI"]["recentFiles"] = m_recent_files;
+ data["GUI"]["emulatorLanguage"] = emulator_language;
data["Settings"]["consoleLanguage"] = m_language;
@@ -454,6 +465,7 @@ void setDefaultValues() {
vblankDivider = 1;
vkValidation = false;
rdocEnable = false;
+ emulator_language = "en";
m_language = 1;
gpuId = -1;
}
diff --git a/src/common/config.h b/src/common/config.h
index 9bf91e692..458fa88c3 100644
--- a/src/common/config.h
+++ b/src/common/config.h
@@ -69,6 +69,7 @@ void setMainWindowHeight(u32 height);
void setPkgViewer(const std::vector& pkgList);
void setElfViewer(const std::vector& elfList);
void setRecentFiles(const std::vector& recentFiles);
+void setEmulatorLanguage(std::string language);
u32 getMainWindowGeometryX();
u32 getMainWindowGeometryY();
@@ -86,6 +87,7 @@ u32 getMainWindowHeight();
std::vector getPkgViewer();
std::vector getElfViewer();
std::vector getRecentFiles();
+std::string getEmulatorLanguage();
void setDefaultValues();
diff --git a/src/qt_gui/game_info.cpp b/src/qt_gui/game_info.cpp
index d2bf3bb2d..2821a0322 100644
--- a/src/qt_gui/game_info.cpp
+++ b/src/qt_gui/game_info.cpp
@@ -23,8 +23,8 @@ void GameInfoClass::GetGameInfo(QWidget* parent) {
}).results();
// Progress bar, please be patient :)
- QProgressDialog dialog("Loading game list, please wait :3", "Cancel", 0, 0, parent);
- dialog.setWindowTitle("Loading...");
+ QProgressDialog dialog(tr("Loading game list, please wait :3"), tr("Cancel"), 0, 0, parent);
+ dialog.setWindowTitle(tr("Loading..."));
QFutureWatcher futureWatcher;
GameListUtils game_util;
diff --git a/src/qt_gui/game_install_dialog.cpp b/src/qt_gui/game_install_dialog.cpp
index 4b2b8528b..5f031bdec 100644
--- a/src/qt_gui/game_install_dialog.cpp
+++ b/src/qt_gui/game_install_dialog.cpp
@@ -21,14 +21,14 @@ GameInstallDialog::GameInstallDialog() : m_gamesDirectory(nullptr) {
layout->addStretch();
layout->addWidget(SetupDialogActions());
- setWindowTitle("shadPS4 - Choose directory");
+ setWindowTitle(tr("shadPS4 - Choose directory"));
setWindowIcon(QIcon(":images/shadps4.ico"));
}
GameInstallDialog::~GameInstallDialog() {}
void GameInstallDialog::Browse() {
- auto path = QFileDialog::getExistingDirectory(this, "Directory to install games");
+ auto path = QFileDialog::getExistingDirectory(this, tr("Directory to install games"));
if (!path.isEmpty()) {
m_gamesDirectory->setText(QDir::toNativeSeparators(path));
@@ -36,7 +36,7 @@ void GameInstallDialog::Browse() {
}
QWidget* GameInstallDialog::SetupGamesDirectory() {
- auto group = new QGroupBox("Directory to install games");
+ auto group = new QGroupBox(tr("Directory to install games"));
auto layout = new QHBoxLayout(group);
// Input.
@@ -47,7 +47,7 @@ QWidget* GameInstallDialog::SetupGamesDirectory() {
layout->addWidget(m_gamesDirectory);
// Browse button.
- auto browse = new QPushButton("Browse");
+ auto browse = new QPushButton(tr("Browse"));
connect(browse, &QPushButton::clicked, this, &GameInstallDialog::Browse);
@@ -71,7 +71,7 @@ void GameInstallDialog::Save() {
if (gamesDirectory.isEmpty() || !QDir(gamesDirectory).exists() ||
!QDir::isAbsolutePath(gamesDirectory)) {
- QMessageBox::critical(this, "Error",
+ QMessageBox::critical(this, tr("Error"),
"The value for location to install games is not valid.");
return;
}
diff --git a/src/qt_gui/gui_context_menus.h b/src/qt_gui/gui_context_menus.h
index 16afdb188..f4bc519a2 100644
--- a/src/qt_gui/gui_context_menus.h
+++ b/src/qt_gui/gui_context_menus.h
@@ -36,10 +36,10 @@ public:
// Setup menu.
QMenu menu(widget);
- QAction createShortcut("Create Shortcut", widget);
- QAction openFolder("Open Game Folder", widget);
- QAction openSfoViewer("SFO Viewer", widget);
- QAction openTrophyViewer("Trophy Viewer", widget);
+ QAction createShortcut(tr("Create Shortcut"), widget);
+ QAction openFolder(tr("Open Game Folder"), widget);
+ QAction openSfoViewer(tr("SFO Viewer"), widget);
+ QAction openTrophyViewer(tr("Trophy Viewer"), widget);
menu.addAction(&openFolder);
menu.addAction(&createShortcut);
@@ -47,10 +47,10 @@ public:
menu.addAction(&openTrophyViewer);
// "Copy" submenu.
- QMenu* copyMenu = new QMenu("Copy info", widget);
- QAction* copyName = new QAction("Copy Name", widget);
- QAction* copySerial = new QAction("Copy Serial", widget);
- QAction* copyNameAll = new QAction("Copy All", widget);
+ QMenu* copyMenu = new QMenu(tr("Copy info"), widget);
+ QAction* copyName = new QAction(tr("Copy Name"), widget);
+ QAction* copySerial = new QAction(tr("Copy Serial"), widget);
+ QAction* copyNameAll = new QAction(tr("Copy All"), widget);
copyMenu->addAction(copyName);
copyMenu->addAction(copySerial);
@@ -116,7 +116,7 @@ public:
tableWidget->horizontalHeader()->setVisible(false);
tableWidget->horizontalHeader()->setSectionResizeMode(QHeaderView::Fixed);
- tableWidget->setWindowTitle("SFO Viewer");
+ tableWidget->setWindowTitle(tr("SFO Viewer"));
tableWidget->show();
}
}
@@ -170,15 +170,15 @@ public:
if (createShortcutLinux(linkPath, ebootPath, iconPath)) {
#endif
QMessageBox::information(
- nullptr, "Shortcut creation",
- QString("Shortcut created successfully!\n %1").arg(linkPath));
+ nullptr, tr("Shortcut creation"),
+ QString(tr("Shortcut created successfully!\n %1")).arg(linkPath));
} else {
QMessageBox::critical(
- nullptr, "Error",
- QString("Error creating shortcut!\n %1").arg(linkPath));
+ nullptr, tr("Error"),
+ QString(tr("Error creating shortcut!\n %1")).arg(linkPath));
}
} else {
- QMessageBox::critical(nullptr, "Error", "Failed to convert icon.");
+ QMessageBox::critical(nullptr, tr("Error"), tr("Failed to convert icon."));
}
} else {
// If the icon is already in ICO format, we just create the shortcut
@@ -188,11 +188,12 @@ public:
if (createShortcutLinux(linkPath, ebootPath, iconPath)) {
#endif
QMessageBox::information(
- nullptr, "Shortcut creation",
- QString("Shortcut created successfully!\n %1").arg(linkPath));
+ nullptr, tr("Shortcut creation"),
+ QString(tr("Shortcut created successfully!\n %1")).arg(linkPath));
} else {
- QMessageBox::critical(nullptr, "Error",
- QString("Error creating shortcut!\n %1").arg(linkPath));
+ QMessageBox::critical(
+ nullptr, tr("Error"),
+ QString(tr("Error creating shortcut!\n %1")).arg(linkPath));
}
}
}
@@ -249,7 +250,7 @@ public:
int itemIndex = GetRowIndex(treeWidget, currentItem); // row
QMenu menu(treeWidget);
- QAction installPackage("Install PKG", treeWidget);
+ QAction installPackage(tr("Install PKG"), treeWidget);
menu.addAction(&installPackage);
diff --git a/src/qt_gui/main_window.cpp b/src/qt_gui/main_window.cpp
index b6711d719..64a89c6a6 100644
--- a/src/qt_gui/main_window.cpp
+++ b/src/qt_gui/main_window.cpp
@@ -37,6 +37,7 @@ bool MainWindow::Init() {
SetLastUsedTheme();
SetLastIconSizeBullet();
GetPhysicalDevices();
+ LoadTranslation();
// show ui
setMinimumSize(350, minimumSizeHint().height());
setWindowTitle(QString::fromStdString("shadPS4 v" + std::string(Common::VERSION)));
@@ -200,11 +201,19 @@ void MainWindow::CreateConnects() {
connect(ui->configureAct, &QAction::triggered, this, [this]() {
auto settingsDialog = new SettingsDialog(m_physical_devices, this);
+
+ connect(settingsDialog, &SettingsDialog::LanguageChanged, this,
+ &MainWindow::OnLanguageChanged);
+
settingsDialog->exec();
});
connect(ui->settingsButton, &QPushButton::clicked, this, [this]() {
auto settingsDialog = new SettingsDialog(m_physical_devices, this);
+
+ connect(settingsDialog, &SettingsDialog::LanguageChanged, this,
+ &MainWindow::OnLanguageChanged);
+
settingsDialog->exec();
});
@@ -781,3 +790,35 @@ void MainWindow::CreateRecentGameActions() {
emulator.Run(gamePath.toUtf8().constData());
});
}
+
+void MainWindow::LoadTranslation() {
+ auto language = QString::fromStdString(Config::getEmulatorLanguage());
+
+ const QString base_dir = QStringLiteral(":/translations");
+ QString base_path = QStringLiteral("%1/%2.qm").arg(base_dir).arg(language);
+
+ if (QFile::exists(base_path)) {
+ if (translator != nullptr) {
+ qApp->removeTranslator(translator);
+ }
+
+ translator = new QTranslator(qApp);
+ if (!translator->load(base_path)) {
+ QMessageBox::warning(
+ nullptr, QStringLiteral("Translation Error"),
+ QStringLiteral("Failed to find load translation file for '%1':\n%2")
+ .arg(language)
+ .arg(base_path));
+ delete translator;
+ } else {
+ qApp->installTranslator(translator);
+ ui->retranslateUi(this);
+ }
+ }
+}
+
+void MainWindow::OnLanguageChanged(const std::string& locale) {
+ Config::setEmulatorLanguage(locale);
+
+ LoadTranslation();
+}
\ No newline at end of file
diff --git a/src/qt_gui/main_window.h b/src/qt_gui/main_window.h
index 1abe17625..d3b83e619 100644
--- a/src/qt_gui/main_window.h
+++ b/src/qt_gui/main_window.h
@@ -5,6 +5,7 @@
#include
#include
+#include
#include "common/config.h"
#include "common/path_util.h"
@@ -43,6 +44,7 @@ private Q_SLOTS:
void ShowGameList();
void RefreshGameTable();
void HandleResize(QResizeEvent* event);
+ void OnLanguageChanged(const std::string& locale);
private:
Ui_MainWindow* ui;
@@ -59,6 +61,7 @@ private:
void InstallPkg();
void BootGame();
void AddRecentFiles(QString filePath);
+ void LoadTranslation();
QIcon RecolorIcon(const QIcon& icon, bool isWhite);
bool isIconBlack = false;
bool isTableList = true;
@@ -84,6 +87,8 @@ private:
std::shared_ptr m_game_info = std::make_shared();
+ QTranslator* translator;
+
protected:
void dragEnterEvent(QDragEnterEvent* event1) override {
if (event1->mimeData()->hasUrls()) {
diff --git a/src/qt_gui/settings_dialog.cpp b/src/qt_gui/settings_dialog.cpp
index 09247951a..d572915c6 100644
--- a/src/qt_gui/settings_dialog.cpp
+++ b/src/qt_gui/settings_dialog.cpp
@@ -2,7 +2,9 @@
// SPDX-License-Identifier: GPL-2.0-or-later
#include
+#include
+#include "main_window.h"
#include "settings_dialog.h"
#include "ui_settings_dialog.h"
@@ -60,6 +62,7 @@ SettingsDialog::SettingsDialog(std::span physical_devices, QWidge
completer->setCaseSensitivity(Qt::CaseInsensitive);
ui->consoleLanguageComboBox->setCompleter(completer);
+ InitializeEmulatorLanguages();
LoadValuesFromConfig();
connect(ui->buttonBox, &QDialogButtonBox::rejected, this, &QWidget::close);
@@ -158,6 +161,7 @@ void SettingsDialog::LoadValuesFromConfig() {
languageIndexes.begin(),
std::find(languageIndexes.begin(), languageIndexes.end(), Config::GetLanguage())) %
languageIndexes.size());
+ ui->emulatorLanguageComboBox->setCurrentIndex(languages[Config::getEmulatorLanguage()]);
ui->graphicsAdapterBox->setCurrentIndex(Config::getGpuId() + 1);
ui->widthSpinBox->setValue(Config::getScreenWidth());
ui->heightSpinBox->setValue(Config::getScreenHeight());
@@ -179,6 +183,35 @@ void SettingsDialog::LoadValuesFromConfig() {
ui->rdocCheckBox->setChecked(Config::isRdocEnabled());
}
+void SettingsDialog::InitializeEmulatorLanguages() {
+ QDirIterator it(QStringLiteral(":/translations"), QDirIterator::NoIteratorFlags);
+
+ int idx = 0;
+ while (it.hasNext()) {
+ QString locale = it.next();
+ locale.truncate(locale.lastIndexOf(QLatin1Char{'.'}));
+ locale.remove(0, locale.lastIndexOf(QLatin1Char{'/'}) + 1);
+ const QString lang = QLocale::languageToString(QLocale(locale).language());
+ const QString country = QLocale::territoryToString(QLocale(locale).territory());
+ ui->emulatorLanguageComboBox->addItem(QStringLiteral("%1 (%2)").arg(lang, country), locale);
+
+ languages[locale.toStdString()] = idx;
+ idx++;
+ }
+
+ connect(ui->emulatorLanguageComboBox, qOverload(&QComboBox::currentIndexChanged), this,
+ &SettingsDialog::OnLanguageChanged);
+}
+
+void SettingsDialog::OnLanguageChanged(int index) {
+ if (index == -1)
+ return;
+
+ ui->retranslateUi(this);
+
+ emit LanguageChanged(ui->emulatorLanguageComboBox->itemData(index).toString().toStdString());
+}
+
int SettingsDialog::exec() {
return QDialog::exec();
}
diff --git a/src/qt_gui/settings_dialog.h b/src/qt_gui/settings_dialog.h
index 7d8701093..ddae7daac 100644
--- a/src/qt_gui/settings_dialog.h
+++ b/src/qt_gui/settings_dialog.h
@@ -22,8 +22,15 @@ public:
int exec() override;
+signals:
+ void LanguageChanged(const std::string& locale);
+
private:
void LoadValuesFromConfig();
+ void InitializeEmulatorLanguages();
+ void OnLanguageChanged(int index);
std::unique_ptr ui;
+
+ std::map languages;
};
diff --git a/src/qt_gui/settings_dialog.ui b/src/qt_gui/settings_dialog.ui
index d11f177d1..1ecd12495 100644
--- a/src/qt_gui/settings_dialog.ui
+++ b/src/qt_gui/settings_dialog.ui
@@ -79,32 +79,6 @@
System
- -
-
-
- 6
-
-
- 0
-
-
-
-
-
-
-
-
- Username
-
-
-
-
-
-
-
-
-
-
-
-
-
-
@@ -117,6 +91,18 @@
+ -
+
+
+ Emulator Language
+
+
+
-
+
+
+
+
+
@@ -156,17 +142,30 @@
-
-
-
- Qt::Orientation::Horizontal
+
+
+ 6
-
-
- 40
- 20
-
+
+ 0
-
+
-
+
+
-
+
+
+ Username
+
+
+
-
+
+
+
+
+
+
+
+
diff --git a/src/qt_gui/translations/da_DK.ts b/src/qt_gui/translations/da_DK.ts
new file mode 100644
index 000000000..0f4489eed
--- /dev/null
+++ b/src/qt_gui/translations/da_DK.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/de.ts b/src/qt_gui/translations/de.ts
new file mode 100644
index 000000000..1ff204df9
--- /dev/null
+++ b/src/qt_gui/translations/de.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/el.ts b/src/qt_gui/translations/el.ts
new file mode 100644
index 000000000..b015954e6
--- /dev/null
+++ b/src/qt_gui/translations/el.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/en.ts b/src/qt_gui/translations/en.ts
new file mode 100644
index 000000000..5ceb11884
--- /dev/null
+++ b/src/qt_gui/translations/en.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/es_ES.ts b/src/qt_gui/translations/es_ES.ts
new file mode 100644
index 000000000..eedd4f6d4
--- /dev/null
+++ b/src/qt_gui/translations/es_ES.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/fi.ts b/src/qt_gui/translations/fi.ts
new file mode 100644
index 000000000..af605d641
--- /dev/null
+++ b/src/qt_gui/translations/fi.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/fr.ts b/src/qt_gui/translations/fr.ts
new file mode 100644
index 000000000..54100f17d
--- /dev/null
+++ b/src/qt_gui/translations/fr.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ À propos de shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 est un émulateur expérimental de la PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ Ce logiciel ne doit pas être utilisé pour jouer à des jeux que vous n'avez pas obtenus légalement.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Ouvrir un dossier
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Chargement de la liste de jeu, veuillez attendre...
+
+
+
+ Cancel
+ Annuler
+
+
+
+ Loading...
+ Chargement...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choisir un répertoire
+
+
+
+ Directory to install games
+ Répertoire pour installer les jeux
+
+
+
+ Browse
+ Parcourir
+
+
+
+ Error
+ Erreur
+
+
+
+ The value for location to install games is not valid.
+ Le répertoire d'installation des jeux n'est pas valide.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Créer un raccourci
+
+
+
+ Open Game Folder
+ Ouvrir le dossier du jeu
+
+
+
+ SFO Viewer
+ Visionneur SFO
+
+
+
+ Trophy Viewer
+ Visionneur de trophés
+
+
+
+ Copy info
+ Copier les informations
+
+
+
+ Copy Name
+ Copier le nom
+
+
+
+ Copy Serial
+ Copier le numéro de série
+
+
+
+ Copy All
+ Copier tout
+
+
+
+ Shortcut creation
+ Création du raccourci
+
+
+
+ Shortcut created successfully!\n %1
+ Raccourci créé avec succès!\n %1
+
+
+
+ Error
+ Erreur
+
+
+
+ Error creating shortcut!\n %1
+ Erreur lors de la création du raccourci!\n %1
+
+
+
+ Install PKG
+ Installer un PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Ouvrir/Ajouter un dossier Elf
+
+
+
+ Install Packages (PKG)
+ Installer des packages (PKG)
+
+
+
+ Boot Game
+ Démarrer un jeu
+
+
+
+ About shadPS4
+ À propos de shadPS4
+
+
+
+ Configure...
+ Configurer...
+
+
+
+ Install application from a .pkg file
+ Installer une application depuis un fichier .pkg
+
+
+
+ Recent Games
+ Jeux récents
+
+
+
+ Exit
+ Fermer
+
+
+
+ Exit shadPS4
+ Fermer shadPS4
+
+
+
+ Exit the application.
+ Fermer l'application.
+
+
+
+ Show Game List
+ Afficher la liste de jeux
+
+
+
+ Game List Refresh
+ Rafraîchir la liste de jeux
+
+
+
+ Tiny
+ Très Petit
+
+
+
+ Small
+ Petit
+
+
+
+ Medium
+ Moyen
+
+
+
+ Large
+ Grand
+
+
+
+ List View
+ Mode liste
+
+
+
+ Grid View
+ Mode grille
+
+
+
+ Elf Viewer
+ Visionneur Elf
+
+
+
+ Game Install Directory
+ Répertoire des jeux
+
+
+
+ Dump Game List
+ Dumper la liste des jeux
+
+
+
+ PKG Viewer
+ Visionneur PKG
+
+
+
+ Search...
+ Chercher...
+
+
+
+ File
+ Fichier
+
+
+
+ View
+ Affichage
+
+
+
+ Game List Icons
+ Icones des jeux
+
+
+
+ Game List Mode
+ Mode liste
+
+
+
+ Settings
+ Paramètres
+
+
+
+ Utils
+ Utilitaire
+
+
+
+ Themes
+ Thèmes
+
+
+
+ About
+ À propos
+
+
+
+ Dark
+ Noir
+
+
+
+ Light
+ Blanc
+
+
+
+ Green
+ Vert
+
+
+
+ Blue
+ Bleu
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ Bare d'outils
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Ouvrir un dossier
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Visionneur de trophés
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Paramètres
+
+
+
+ General
+ Général
+
+
+
+ System
+ Système
+
+
+
+ Console Language
+ Langage de la console
+
+
+
+ Emulator Language
+ Langage de l'émulateur
+
+
+
+ Emulator
+ Émulateur
+
+
+
+ Enable Fullscreen
+ Plein écran
+
+
+
+ Show Splash
+ Afficher l'image du jeu
+
+
+
+ Is PS4 Pro
+ Mode PS4 Pro
+
+
+
+ Username
+ Nom d'utilisateur
+
+
+
+ Logger
+ Journalisation
+
+
+
+ Log Type
+ Type
+
+
+
+ Log Filter
+ Filtre
+
+
+
+ Graphics
+ Graphismes
+
+
+
+ Graphics Device
+ Carte graphique
+
+
+
+ Width
+ Largeur
+
+
+
+ Height
+ Hauteur
+
+
+
+ Vblank Divider
+ Vblank
+
+
+
+ Advanced
+ Avancé
+
+
+
+ Enable Shaders Dumping
+ Dumper les shaders
+
+
+
+ Enable NULL GPU
+ NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Dumper le PM4
+
+
+
+ Debug
+ Débogage
+
+
+
+ Enable Debug Dumping
+ Activer le débogage
+
+
+
+ Enable Vulkan Validation Layers
+ Couche de validation Vulkan
+
+
+
+ Enable Vulkan Synchronization Validation
+ Synchroniser la validation Vulkan
+
+
+
+ Enable RenderDoc Debugging
+ Activer le débogage RenderDoc
+
+
+
diff --git a/src/qt_gui/translations/hu_HU.ts b/src/qt_gui/translations/hu_HU.ts
new file mode 100644
index 000000000..a32b2d2ad
--- /dev/null
+++ b/src/qt_gui/translations/hu_HU.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/id.ts b/src/qt_gui/translations/id.ts
new file mode 100644
index 000000000..502be21e6
--- /dev/null
+++ b/src/qt_gui/translations/id.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/it.ts b/src/qt_gui/translations/it.ts
new file mode 100644
index 000000000..64d123f2e
--- /dev/null
+++ b/src/qt_gui/translations/it.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/ja_JP.ts b/src/qt_gui/translations/ja_JP.ts
new file mode 100644
index 000000000..c67352569
--- /dev/null
+++ b/src/qt_gui/translations/ja_JP.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/ko_KR.ts b/src/qt_gui/translations/ko_KR.ts
new file mode 100644
index 000000000..b33b5d927
--- /dev/null
+++ b/src/qt_gui/translations/ko_KR.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/lt_LT.ts b/src/qt_gui/translations/lt_LT.ts
new file mode 100644
index 000000000..286ec3f43
--- /dev/null
+++ b/src/qt_gui/translations/lt_LT.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/nb.ts b/src/qt_gui/translations/nb.ts
new file mode 100644
index 000000000..27fc540c1
--- /dev/null
+++ b/src/qt_gui/translations/nb.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/nl.ts b/src/qt_gui/translations/nl.ts
new file mode 100644
index 000000000..2f4f5f9b2
--- /dev/null
+++ b/src/qt_gui/translations/nl.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/pl_PL.ts b/src/qt_gui/translations/pl_PL.ts
new file mode 100644
index 000000000..cad5c5829
--- /dev/null
+++ b/src/qt_gui/translations/pl_PL.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/pt_BR.ts b/src/qt_gui/translations/pt_BR.ts
new file mode 100644
index 000000000..a35f9b1d8
--- /dev/null
+++ b/src/qt_gui/translations/pt_BR.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/ro_RO.ts b/src/qt_gui/translations/ro_RO.ts
new file mode 100644
index 000000000..c7dfae1b4
--- /dev/null
+++ b/src/qt_gui/translations/ro_RO.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/ru_RU.ts b/src/qt_gui/translations/ru_RU.ts
new file mode 100644
index 000000000..556875e17
--- /dev/null
+++ b/src/qt_gui/translations/ru_RU.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/tr_TR.ts b/src/qt_gui/translations/tr_TR.ts
new file mode 100644
index 000000000..ebb8b9b7c
--- /dev/null
+++ b/src/qt_gui/translations/tr_TR.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/vi_VN.ts b/src/qt_gui/translations/vi_VN.ts
new file mode 100644
index 000000000..08af9b351
--- /dev/null
+++ b/src/qt_gui/translations/vi_VN.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/zh_CN.ts b/src/qt_gui/translations/zh_CN.ts
new file mode 100644
index 000000000..6f6392237
--- /dev/null
+++ b/src/qt_gui/translations/zh_CN.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/translations/zh_TW.ts b/src/qt_gui/translations/zh_TW.ts
new file mode 100644
index 000000000..1ddeaa43f
--- /dev/null
+++ b/src/qt_gui/translations/zh_TW.ts
@@ -0,0 +1,491 @@
+
+
+
+ AboutDialog
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ shadPS4
+ shadPS4
+
+
+
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+ shadPS4 is an experimental open-source emulator for the PlayStation 4.
+
+
+
+ This software should not be used to play games you have not legally obtained.
+ This software should not be used to play games you have not legally obtained.
+
+
+
+ ElfViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ GameInfoClass
+
+
+ Loading game list, please wait :3
+ Loading game list, please wait :3
+
+
+
+ Cancel
+ Cancel
+
+
+
+ Loading...
+ Loading...
+
+
+
+ GameInstallDialog
+
+
+ shadPS4 - Choose directory
+ shadPS4 - Choose directory
+
+
+
+ Directory to install games
+ Directory to install games
+
+
+
+ Browse
+ Browse
+
+
+
+ Error
+ Error
+
+
+
+ The value for location to install games is not valid.
+ The value for location to install games is not valid.
+
+
+
+ GuiContextMenus
+
+
+ Create Shortcut
+ Create Shortcut
+
+
+
+ Open Game Folder
+ Open Game Folder
+
+
+
+ SFO Viewer
+ SFO Viewer
+
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ Copy info
+ Copy info
+
+
+
+ Copy Name
+ Copy Name
+
+
+
+ Copy Serial
+ Copy Serial
+
+
+
+ Copy All
+ Copy All
+
+
+
+ Shortcut creation
+ Shortcut creation
+
+
+
+ Shortcut created successfully!\n %1
+ Shortcut created successfully!\n %1
+
+
+
+ Error
+ Error
+
+
+
+ Error creating shortcut!\n %1
+ Error creating shortcut!\n %1
+
+
+
+ Install PKG
+ Install PKG
+
+
+
+ MainWindow
+
+
+ Open/Add Elf Folder
+ Open/Add Elf Folder
+
+
+
+ Install Packages (PKG)
+ Install Packages (PKG)
+
+
+
+ Boot Game
+ Boot Game
+
+
+
+ About shadPS4
+ About shadPS4
+
+
+
+ Configure...
+ Configure...
+
+
+
+ Install application from a .pkg file
+ Install application from a .pkg file
+
+
+
+ Recent Games
+ Recent Games
+
+
+
+ Exit
+ Exit
+
+
+
+ Exit shadPS4
+ Exit shadPS4
+
+
+
+ Exit the application.
+ Exit the application.
+
+
+
+ Show Game List
+ Show Game List
+
+
+
+ Game List Refresh
+ Game List Refresh
+
+
+
+ Tiny
+ Tiny
+
+
+
+ Small
+ Small
+
+
+
+ Medium
+ Medium
+
+
+
+ Large
+ Large
+
+
+
+ List View
+ List View
+
+
+
+ Grid View
+ Grid View
+
+
+
+ Elf Viewer
+ Elf Viewer
+
+
+
+ Game Install Directory
+ Game Install Directory
+
+
+
+ Dump Game List
+ Dump Game List
+
+
+
+ PKG Viewer
+ PKG Viewer
+
+
+
+ Search...
+ Search...
+
+
+
+ File
+ File
+
+
+
+ View
+ View
+
+
+
+ Game List Icons
+ Game List Icons
+
+
+
+ Game List Mode
+ Game List Mode
+
+
+
+ Settings
+ Settings
+
+
+
+ Utils
+ Utils
+
+
+
+ Themes
+ Themes
+
+
+
+ About
+ About
+
+
+
+ Dark
+ Dark
+
+
+
+ Light
+ Light
+
+
+
+ Green
+ Green
+
+
+
+ Blue
+ Blue
+
+
+
+ Violet
+ Violet
+
+
+
+ toolBar
+ toolBar
+
+
+
+ PKGViewer
+
+
+ Open Folder
+ Open Folder
+
+
+
+ TrophyViewer
+
+
+ Trophy Viewer
+ Trophy Viewer
+
+
+
+ SettingsDialog
+
+
+ Settings
+ Settings
+
+
+
+ General
+ General
+
+
+
+ System
+ System
+
+
+
+ Console Language
+ Console Language
+
+
+
+ Emulator Language
+ Emulator Language
+
+
+
+ Emulator
+ Emulator
+
+
+
+ Enable Fullscreen
+ Enable Fullscreen
+
+
+
+ Show Splash
+ Show Splash
+
+
+
+ Is PS4 Pro
+ Is PS4 Pro
+
+
+
+ Username
+ Username
+
+
+
+ Logger
+ Logger
+
+
+
+ Log Type
+ Log Type
+
+
+
+ Log Filter
+ Log Filter
+
+
+
+ Graphics
+ Graphics
+
+
+
+ Graphics Device
+ Graphics Device
+
+
+
+ Width
+ Width
+
+
+
+ Height
+ Height
+
+
+
+ Vblank Divider
+ Vblank Divider
+
+
+
+ Advanced
+ Advanced
+
+
+
+ Enable Shaders Dumping
+ Enable Shaders Dumping
+
+
+
+ Enable NULL GPU
+ Enable NULL GPU
+
+
+
+ Enable PM4 Dumping
+ Enable PM4 Dumping
+
+
+
+ Debug
+ Debug
+
+
+
+ Enable Debug Dumping
+ Enable Debug Dumping
+
+
+
+ Enable Vulkan Validation Layers
+ Enable Vulkan Validation Layers
+
+
+
+ Enable Vulkan Synchronization Validation
+ Enable Vulkan Synchronization Validation
+
+
+
+ Enable RenderDoc Debugging
+ Enable RenderDoc Debugging
+
+
+
\ No newline at end of file
diff --git a/src/qt_gui/trophy_viewer.cpp b/src/qt_gui/trophy_viewer.cpp
index bb17dfc3a..57dce6b4e 100644
--- a/src/qt_gui/trophy_viewer.cpp
+++ b/src/qt_gui/trophy_viewer.cpp
@@ -5,7 +5,7 @@
#include "trophy_viewer.h"
TrophyViewer::TrophyViewer(QString trophyPath, QString gameTrpPath) : QMainWindow() {
- this->setWindowTitle("Trophy Viewer");
+ this->setWindowTitle(tr("Trophy Viewer"));
this->setAttribute(Qt::WA_DeleteOnClose);
tabWidget = new QTabWidget(this);
gameTrpPath_ = gameTrpPath;