mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-19 06:53:26 +08:00
121 lines
3.5 KiB
C#
121 lines
3.5 KiB
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Linq;
|
|||
|
using System.Reflection;
|
|||
|
using System.Text;
|
|||
|
using System.Windows;
|
|||
|
using System.Windows.Controls;
|
|||
|
using Wox.Helper;
|
|||
|
using Wox.Infrastructure.Logger;
|
|||
|
using Wox.Infrastructure.Storage.UserSettings;
|
|||
|
|
|||
|
namespace Wox
|
|||
|
{
|
|||
|
public class LanguageManager
|
|||
|
{
|
|||
|
private static List<string> languageDirectories = new List<string>();
|
|||
|
|
|||
|
static LanguageManager()
|
|||
|
{
|
|||
|
languageDirectories.Add(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), "Languages"));
|
|||
|
|
|||
|
string userProfilePath = Environment.GetEnvironmentVariable("USERPROFILE");
|
|||
|
if (userProfilePath != null)
|
|||
|
{
|
|||
|
languageDirectories.Add(Path.Combine(Path.Combine(userProfilePath, ".Wox"), "Languages"));
|
|||
|
}
|
|||
|
|
|||
|
MakesureThemeDirectoriesExist();
|
|||
|
}
|
|||
|
|
|||
|
private static void MakesureThemeDirectoriesExist()
|
|||
|
{
|
|||
|
foreach (string pluginDirectory in languageDirectories)
|
|||
|
{
|
|||
|
if (!Directory.Exists(pluginDirectory))
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
Directory.CreateDirectory(pluginDirectory);
|
|||
|
}
|
|||
|
catch (Exception e)
|
|||
|
{
|
|||
|
Log.Error(e.Message);
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public static void ChangeLanguage(string name)
|
|||
|
{
|
|||
|
string path = GetLanguagePath(name);
|
|||
|
if (string.IsNullOrEmpty(path))
|
|||
|
{
|
|||
|
path = GetLanguagePath("English");
|
|||
|
if (string.IsNullOrEmpty(path))
|
|||
|
{
|
|||
|
throw new Exception("Change Language failed");
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
UserSettingStorage.Instance.Language = name;
|
|||
|
UserSettingStorage.Instance.Save();
|
|||
|
ResourceMerger.ApplyResources();
|
|||
|
}
|
|||
|
|
|||
|
internal static ResourceDictionary GetResourceDictionary()
|
|||
|
{
|
|||
|
return new ResourceDictionary
|
|||
|
{
|
|||
|
Source = new Uri(GetLanguagePath(UserSettingStorage.Instance.Language), UriKind.Absolute)
|
|||
|
};
|
|||
|
}
|
|||
|
|
|||
|
public static List<string> LoadAvailableLanguages()
|
|||
|
{
|
|||
|
List<string> themes = new List<string>();
|
|||
|
foreach (var directory in languageDirectories)
|
|||
|
{
|
|||
|
themes.AddRange(
|
|||
|
Directory.GetFiles(directory)
|
|||
|
.Where(filePath => filePath.EndsWith(".xaml"))
|
|||
|
.Select(Path.GetFileNameWithoutExtension)
|
|||
|
.ToList());
|
|||
|
}
|
|||
|
return themes;
|
|||
|
}
|
|||
|
|
|||
|
public static string GetTranslation(string key)
|
|||
|
{
|
|||
|
try
|
|||
|
{
|
|||
|
object translation = Application.Current.FindResource(key);
|
|||
|
if (translation == null)
|
|||
|
{
|
|||
|
return "NoTranslation";
|
|||
|
}
|
|||
|
return translation.ToString();
|
|||
|
}
|
|||
|
catch
|
|||
|
{
|
|||
|
return "NoTranslation";
|
|||
|
}
|
|||
|
|
|||
|
}
|
|||
|
|
|||
|
private static string GetLanguagePath(string name)
|
|||
|
{
|
|||
|
foreach (string directory in languageDirectories)
|
|||
|
{
|
|||
|
string path = Path.Combine(directory, name + ".xaml");
|
|||
|
if (File.Exists(path))
|
|||
|
{
|
|||
|
return path;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
return string.Empty;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|