diff options
| author | AL <26797547+Al12rs@users.noreply.github.com> | 2020-04-02 14:29:40 +0200 |
|---|---|---|
| committer | AL <26797547+Al12rs@users.noreply.github.com> | 2020-04-02 14:29:40 +0200 |
| commit | 502e752b0af4e7a6800a7504ddbefbeef99778e4 (patch) | |
| tree | a592f08961db7902cac8e5712096173d58d368b1 | |
| parent | a4ed20295f87de040e3afd4bc47777ccb6f47a75 (diff) | |
Fix inconsistent Explore menu option naming. Used Visual Studio standard.
| -rw-r--r-- | src/downloadlistwidget.cpp | 6 | ||||
| -rw-r--r-- | src/filetree.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/downloadlistwidget.cpp b/src/downloadlistwidget.cpp index 5ca6cb51..2fddd16f 100644 --- a/src/downloadlistwidget.cpp +++ b/src/downloadlistwidget.cpp @@ -221,7 +221,7 @@ void DownloadListWidget::onCustomContextMenu(const QPoint &point) else
menu.addAction(tr("Visit on Nexus"), this, SLOT(issueVisitOnNexus()));
menu.addAction(tr("Open File"), this, SLOT(issueOpenFile()));
- menu.addAction(tr("Show in Folder"), this, SLOT(issueOpenInDownloadsFolder()));
+ menu.addAction(tr("Reveal in Explorer"), this, SLOT(issueOpenInDownloadsFolder()));
menu.addSeparator();
@@ -233,12 +233,12 @@ void DownloadListWidget::onCustomContextMenu(const QPoint &point) } else if (state == DownloadManager::STATE_DOWNLOADING) {
menu.addAction(tr("Cancel"), this, SLOT(issueCancel()));
menu.addAction(tr("Pause"), this, SLOT(issuePause()));
- menu.addAction(tr("Show in Folder"), this, SLOT(issueOpenInDownloadsFolder()));
+ menu.addAction(tr("Reveal in Explorer"), this, SLOT(issueOpenInDownloadsFolder()));
} else if ((state == DownloadManager::STATE_PAUSED) || (state == DownloadManager::STATE_ERROR)
|| (state == DownloadManager::STATE_PAUSING)) {
menu.addAction(tr("Delete"), this, SLOT(issueDelete()));
menu.addAction(tr("Resume"), this, SLOT(issueResume()));
- menu.addAction(tr("Show in Folder"), this, SLOT(issueOpenInDownloadsFolder()));
+ menu.addAction(tr("Reveal in Explorer"), this, SLOT(issueOpenInDownloadsFolder()));
}
menu.addSeparator();
diff --git a/src/filetree.cpp b/src/filetree.cpp index cdcf2feb..6d96ddaa 100644 --- a/src/filetree.cpp +++ b/src/filetree.cpp @@ -683,7 +683,7 @@ void FileTree::addFileMenus(QMenu& menu, const FileEntry& file, int originID) .enabled(getFileExecutionType(target) == FileExecutionTypes::Executable) .addTo(menu); - MenuItem(tr("E&xplore")) + MenuItem(tr("Reveal in E&xplorer")) .callback([&]{ exploreOrigin(); }) .hint(tr("Opens the file in Explorer")) .disabledHint(tr("This file is in an archive")) |
