From 64958264c50c223f7d93f52eb08d106834d47b41 Mon Sep 17 00:00:00 2001 From: brian2081 <17809637+brian2081@users.noreply.github.com> Date: Tue, 31 May 2022 10:26:20 +0800 Subject: [PATCH] Fix issue #12137 --- rpcs3/rpcs3qt/main_window.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/rpcs3qt/main_window.cpp b/rpcs3/rpcs3qt/main_window.cpp index 5cf96f7e53..cc41a78c5f 100644 --- a/rpcs3/rpcs3qt/main_window.cpp +++ b/rpcs3/rpcs3qt/main_window.cpp @@ -2251,7 +2251,7 @@ void main_window::CreateConnects() connect(ui->updateAct, &QAction::triggered, this, [this]() { #if !defined(_WIN32) && !defined(__linux__) - QMessageBox::warning(this, tr("Auto-updater"), tr("The auto-updater currently isn't available for your os.")); + QMessageBox::warning(this, tr("Auto-updater"), tr("The auto-updater isn't available for your OS currently.")); return; #endif m_updater.check_for_updates(false, false, false, this);