Skip to content

Commit

Permalink
Fix a translation not working (shadps4-emu#1947)
Browse files Browse the repository at this point in the history
  • Loading branch information
DemoJameson authored Dec 28, 2024
1 parent 04933ac commit 9aabe98
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/qt_gui/gui_context_menus.h
Original file line number Diff line number Diff line change
Expand Up @@ -347,9 +347,8 @@ class GuiContextMenus : public QObject {

if (selected == deleteUpdate) {
if (!std::filesystem::exists(Common::FS::PathFromQString(game_update_path))) {
QMessageBox::critical(
nullptr, tr("Error"),
QString(tr("This game has no separate update to delete!")));
QMessageBox::critical(nullptr, tr("Error"),
QString(tr("This game has no update to delete!")));
error = true;
} else {
folder_path = game_update_path;
Expand Down

0 comments on commit 9aabe98

Please sign in to comment.