diff options
author | dartraiden <wowemuh@gmail.com> | 2023-11-02 18:23:29 +0300 |
---|---|---|
committer | dartraiden <wowemuh@gmail.com> | 2023-11-02 18:23:29 +0300 |
commit | c3190e615893ffda7ca8bfc70d31d9990b87e6c0 (patch) | |
tree | 84b3e0ba17dac12b94165122b1bff42571a7e210 /plugins/NewStory/src | |
parent | a3ae8d143f4ce2661d121eae9202122b1fbb113b (diff) |
This menu item copies the path, not just the name
Diffstat (limited to 'plugins/NewStory/src')
-rw-r--r-- | plugins/NewStory/src/history_menus.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/NewStory/src/history_menus.cpp b/plugins/NewStory/src/history_menus.cpp index 2a5186e49e..b82194ce3b 100644 --- a/plugins/NewStory/src/history_menus.cpp +++ b/plugins/NewStory/src/history_menus.cpp @@ -34,7 +34,7 @@ static HGENMENU hmiEdit, hmiBookmark, hmiDelete; HMENU NSMenu_Build(NewstoryListData *data, ItemData *item) { if (item->m_bOfflineFile) { - Menu_ModifyItem(hmiCopyUrl, (item->m_bOfflineDownloaded) ? TranslateT("Copy file name") : TranslateT("Copy URL")); + Menu_ModifyItem(hmiCopyUrl, (item->m_bOfflineDownloaded) ? TranslateT("Copy file path") : TranslateT("Copy URL")); Menu_ShowItem(hmiCopyUrl, true); Menu_ShowItem(hmiSaveAs, true); Menu_ShowItem(hmiDownload, !item->m_bOfflineDownloaded); |