From 7475cfb325dba184e32c07885915ff8567d8fb49 Mon Sep 17 00:00:00 2001 From: KamFretoZ <14798312+kamfretoz@users.noreply.github.com> Date: Mon, 8 Dec 2025 17:23:58 +0700 Subject: [PATCH] Qt: Clarify open directory menu --- pcsx2-qt/QtUtils.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2-qt/QtUtils.cpp b/pcsx2-qt/QtUtils.cpp index 0bc2ca2673..b0865fa52d 100644 --- a/pcsx2-qt/QtUtils.cpp +++ b/pcsx2-qt/QtUtils.cpp @@ -285,12 +285,12 @@ namespace QtUtils { #if defined(_WIN32) //: Windows action to show a file in Windows Explorer - return QCoreApplication::translate("FileOperations", "Show in Folder"); + return QCoreApplication::translate("FileOperations", "Show in Explorer"); #elif defined(__APPLE__) //: macOS action to show a file in Finder return QCoreApplication::translate("FileOperations", "Show in Finder"); #else - //: Opens the system file manager to the directory containing a selected file + //: Linux/*NIX: Opens the system file manager to the directory containing a selected file return QCoreApplication::translate("FileOperations", "Open Containing Directory"); #endif }