Qt: Add missing translations

This commit is contained in:
wheremyfoodat 2024-12-03 14:16:35 +02:00
parent 2627e1b685
commit cd01073903
3 changed files with 4 additions and 4 deletions

View file

@ -69,7 +69,7 @@ void CheatEntryWidget::editClicked() {
}
CheatEditDialog::CheatEditDialog(Emulator* emu, CheatEntryWidget& cheatEntry) : QDialog(), emu(emu), cheatEntry(cheatEntry) {
setWindowTitle("Edit Cheat");
setWindowTitle(tr("Edit Cheat"));
setAttribute(Qt::WA_DeleteOnClose);
setModal(true);
@ -161,7 +161,7 @@ void CheatEditDialog::rejected() {
CheatsWindow::CheatsWindow(Emulator* emu, const std::filesystem::path& cheatPath, QWidget* parent)
: QWidget(parent, Qt::Window), emu(emu), cheatPath(cheatPath) {
setWindowTitle("Cheats");
setWindowTitle(tr("Cheats"));
mainWindow = static_cast<MainWindow*>(parent);
QVBoxLayout* layout = new QVBoxLayout;

View file

@ -12,7 +12,7 @@
#include "io_file.hpp"
PatchWindow::PatchWindow(QWidget* parent) : QWidget(parent, Qt::Window) {
setWindowTitle("ROM patcher");
setWindowTitle(tr("ROM patcher"));
QVBoxLayout* layout = new QVBoxLayout;
layout->setContentsMargins(6, 6, 6, 6);

View file

@ -9,7 +9,7 @@ using namespace Zep;
TextEditorWindow::TextEditorWindow(QWidget* parent, const std::string& filename, const std::string& initialText)
: QDialog(parent), zepWidget(this, qApp->applicationDirPath().toStdString(), fontSize) {
setWindowTitle("Lua Editor");
setWindowTitle(tr("Lua Editor"));
resize(600, 600);
// Register our extensions