Add translation for icon tray.

This commit is contained in:
qianlifeng
2015-02-21 21:57:00 +08:00
parent 5ace62a5fd
commit 7aae1b262e
9 changed files with 54 additions and 28 deletions

View File

@@ -6,7 +6,7 @@ using System.Windows;
namespace Wox.Helper
{
public static class WindowOpener
public static class SingletonWindowOpener
{
public static T Open<T>(params object[] args) where T : Window
{

View File

@@ -1,17 +0,0 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace Wox.Helper
{
public class WoxLog4netPathConverter : log4net.Util.PatternConverter
{
protected override void Convert(TextWriter writer, object state)
{
string userProfilePath = Environment.GetEnvironmentVariable("USERPROFILE");
writer.Write(Path.Combine(userProfilePath, ".Wox"));
}
}
}