Qt: Clarify open directory menu

This commit is contained in:
KamFretoZ 2025-12-08 17:23:58 +07:00 committed by lightningterror
parent cee01a22e1
commit 7475cfb325

View File

@ -285,12 +285,12 @@ namespace QtUtils
{ {
#if defined(_WIN32) #if defined(_WIN32)
//: Windows action to show a file in Windows Explorer //: 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__) #elif defined(__APPLE__)
//: macOS action to show a file in Finder //: macOS action to show a file in Finder
return QCoreApplication::translate("FileOperations", "Show in Finder"); return QCoreApplication::translate("FileOperations", "Show in Finder");
#else #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"); return QCoreApplication::translate("FileOperations", "Open Containing Directory");
#endif #endif
} }