mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-05-10 02:06:42 +08:00
link to plugin list
This commit is contained in:
@@ -13,6 +13,7 @@
|
||||
<Icon_RunAtStartup>Run at &Startup</Icon_RunAtStartup>
|
||||
<Icon_ToolTip>QuickLook v{0}: a spacebar previewing utility</Icon_ToolTip>
|
||||
<Icon_CheckUpdate>Check for &Updates...</Icon_CheckUpdate>
|
||||
<Icon_GetPlugin>Find new &Plugins...</Icon_GetPlugin>
|
||||
<Icon_Quit>&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>启动时自动运行 (&S)</Icon_RunAtStartup>
|
||||
<Icon_ToolTip>QuickLook v{0}:一个空格键预览工具</Icon_ToolTip>
|
||||
<Icon_CheckUpdate>检查更新... (&U)</Icon_CheckUpdate>
|
||||
<Icon_GetPlugin>获取新插件... (&P)</Icon_GetPlugin>
|
||||
<Icon_Quit>退出 (&Q)</Icon_Quit>
|
||||
<Update_NoUpdate>您已使用了最新版本。</Update_NoUpdate>
|
||||
<Update_Found>QuickLook {0} 已发布。点击这里打开下载页面。</Update_Found>
|
||||
@@ -61,6 +63,7 @@
|
||||
<Icon_RunAtStartup>系統啟動時自動執行 (&S)</Icon_RunAtStartup>
|
||||
<Icon_ToolTip>QuickLook v{0}:一個空白鍵預覽工具</Icon_ToolTip>
|
||||
<Icon_CheckUpdate>檢查更新... (&U)</Icon_CheckUpdate>
|
||||
<Icon_GetPlugin>獲取新外掛... (&P)</Icon_GetPlugin>
|
||||
<Icon_Quit>結束 Quicklook (&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>更新を確認する... (&U)</Icon_CheckUpdate>
|
||||
<Icon_GetPlugin>新しいプラグインを検索する... (&P)</Icon_GetPlugin>
|
||||
<Icon_Quit>終了(&E)</Icon_Quit>
|
||||
<Update_NoUpdate>最新版です</Update_NoUpdate>
|
||||
<Update_Found>QuickLook {0} がリリースされました。ここをクリックしてダウンロードページを開きます。</Update_Found>
|
||||
|
||||
@@ -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())
|
||||
|
||||
Reference in New Issue
Block a user