2015-01-03 15:20:34 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace Wox.Core.i18n
|
|
|
|
|
{
|
|
|
|
|
interface IInternationalization
|
|
|
|
|
{
|
|
|
|
|
List<Language> LoadAvailableLanguages();
|
|
|
|
|
|
|
|
|
|
string GetTranslation(string key);
|
|
|
|
|
|
2015-01-06 18:28:23 +08:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Get language file for current user selected language
|
|
|
|
|
/// if couldn't find the current selected language file, it will first try to load en.xaml
|
|
|
|
|
/// if en.xaml couldn't find, it will pick up first *.xaml file
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="folder"></param>
|
|
|
|
|
/// <returns></returns>
|
|
|
|
|
string GetLanguageFile(string folder);
|
|
|
|
|
|
2015-01-03 15:20:34 +08:00
|
|
|
|
void ChangeLanguage(Language language);
|
|
|
|
|
|
|
|
|
|
void ChangeLanguage(string languageCode);
|
|
|
|
|
}
|
|
|
|
|
}
|