link to plugin list

This commit is contained in:
Paddy Xu
2018-09-02 15:40:37 +03:00
parent 45f09af98f
commit 9fb6ac8653
2 changed files with 8 additions and 1 deletions
+5 -1
View File
@@ -13,6 +13,7 @@
<Icon_RunAtStartup>Run at &amp;Startup</Icon_RunAtStartup>
<Icon_ToolTip>QuickLook v{0}: a spacebar previewing utility</Icon_ToolTip>
<Icon_CheckUpdate>Check for &amp;Updates...</Icon_CheckUpdate>
<Icon_GetPlugin>Find new &amp;Plugins...</Icon_GetPlugin>
<Icon_Quit>&amp;Quit</Icon_Quit>
<Update_NoUpdate>You are now on the latest version.</Update_NoUpdate>
<Update_Found>QuickLook {0} is released. Click here to open the download page.</Update_Found>
@@ -37,6 +38,7 @@
<Icon_RunAtStartup>启动时自动运行 (&amp;S)</Icon_RunAtStartup>
<Icon_ToolTip>QuickLook v{0}:一个空格键预览工具</Icon_ToolTip>
<Icon_CheckUpdate>检查更新... (&amp;U)</Icon_CheckUpdate>
<Icon_GetPlugin>获取新插件... (&amp;P)</Icon_GetPlugin>
<Icon_Quit>退出 (&amp;Q)</Icon_Quit>
<Update_NoUpdate>您已使用了最新版本。</Update_NoUpdate>
<Update_Found>QuickLook {0} 已发布。点击这里打开下载页面。</Update_Found>
@@ -61,6 +63,7 @@
<Icon_RunAtStartup>系統啟動時自動執行 (&amp;S)</Icon_RunAtStartup>
<Icon_ToolTip>QuickLook v{0}:一個空白鍵預覽工具</Icon_ToolTip>
<Icon_CheckUpdate>檢查更新... (&amp;U)</Icon_CheckUpdate>
<Icon_GetPlugin>獲取新外掛... (&amp;P)</Icon_GetPlugin>
<Icon_Quit>結束 Quicklook (&amp;Q)</Icon_Quit>
<Update_NoUpdate>您正在使用最新版本。</Update_NoUpdate>
<Update_Found>QuickLook {0} 新版本已發布。請按一下此處開啟下載頁面。</Update_Found>
@@ -268,7 +271,8 @@
<MW_Run>{0} を起動</MW_Run>
<Icon_RunAtStartup>スタートアップ時に起動</Icon_RunAtStartup>
<Icon_ToolTip>QuickLook バージョン {0}</Icon_ToolTip>
<Icon_CheckUpdate>更新を確認する...</Icon_CheckUpdate>
<Icon_CheckUpdate>更新を確認する... (&amp;U)</Icon_CheckUpdate>
<Icon_GetPlugin>新しいプラグインを検索する... (&amp;P)</Icon_GetPlugin>
<Icon_Quit>終了(&amp;E)</Icon_Quit>
<Update_NoUpdate>最新版です</Update_NoUpdate>
<Update_Found>QuickLook {0} がリリースされました。ここをクリックしてダウンロードページを開きます。</Update_Found>
+3
View File
@@ -16,6 +16,7 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
using System;
using System.Diagnostics;
using System.Drawing;
using System.Windows.Forms;
using QuickLook.Common.Helpers;
@@ -53,6 +54,8 @@ namespace QuickLook
new MenuItem($"v{Application.ProductVersion}{(App.IsUWP ? " (UWP)" : "")}") {Enabled = false},
new MenuItem("-"),
new MenuItem(TranslationHelper.Get("Icon_CheckUpdate"), (sender, e) => Updater.CheckForUpdates()),
new MenuItem(TranslationHelper.Get("Icon_GetPlugin"),
(sender, e) => Process.Start("https://github.com/QL-Win/QuickLook/wiki/Available-Plugins")),
_itemAutorun,
new MenuItem(TranslationHelper.Get("Icon_Quit"),
(sender, e) => System.Windows.Application.Current.Shutdown())