Add i18n support [WIP]

This commit is contained in:
qianlifeng
2015-01-02 23:07:49 +08:00
parent bf87500e35
commit 203965043e
21 changed files with 257 additions and 124 deletions

View File

@@ -6,6 +6,7 @@ using System.Windows.Forms;
using ICSharpCode.SharpZipLib.Zip;
using Newtonsoft.Json;
using Wox.Plugin;
using MessageBox = System.Windows.Forms.MessageBox;
namespace Wox.Core.Plugin
{
@@ -61,7 +62,7 @@ namespace Wox.Core.Plugin
plugin.Name, existingPlugin.Metadata.Version, plugin.Version, plugin.Author);
}
DialogResult result = MessageBox.Show(content, "Install plugin", MessageBoxButtons.YesNo,
DialogResult result = System.Windows.Forms.MessageBox.Show(content, "Install plugin", MessageBoxButtons.YesNo,
MessageBoxIcon.Question);
if (result == DialogResult.Yes)
{