summaryrefslogtreecommitdiff
path: root/library/process_xml.h
diff options
context:
space:
mode:
Diffstat (limited to 'library/process_xml.h')
-rw-r--r--library/process_xml.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/process_xml.h b/library/process_xml.h
index 589865a2..d627fc18 100644
--- a/library/process_xml.h
+++ b/library/process_xml.h
@@ -161,7 +161,7 @@ struct XmlGlobalSettings
{
//default external apps will be translated "on the fly"!!!
#ifdef FFS_WIN
- externelApplications.push_back(std::make_pair(wxT("Open with Explorer"), //mark for extraction: _("Open with Explorer")
+ externelApplications.push_back(std::make_pair(wxT("Show in Explorer"), //mark for extraction: _("Show in Explorer")
wxT("explorer /select, \"%name\"")));
externelApplications.push_back(std::make_pair(wxT("Open with default application"), //mark for extraction: _("Open with default application")
wxT("cmd /c start \"\" \"%name\"")));
bgstack15