Files
PowerToys/Wox.Plugin/IPluginI18n.cs

14 lines
300 B
C#
Raw Normal View History

2015-10-30 23:17:34 +00:00
namespace Wox.Plugin
2015-01-06 18:28:23 +08:00
{
/// <summary>
/// Represent plugins that support internationalization
/// </summary>
public interface IPluginI18n
{
string GetLanguagesFolder();
2015-02-07 20:17:49 +08:00
string GetTranslatedPluginTitle();
string GetTranslatedPluginDescription();
2015-01-06 18:28:23 +08:00
}
2015-02-07 20:17:49 +08:00
}