mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
14 lines
300 B
C#
14 lines
300 B
C#
namespace Wox.Plugin
|
|
{
|
|
/// <summary>
|
|
/// Represent plugins that support internationalization
|
|
/// </summary>
|
|
public interface IPluginI18n
|
|
{
|
|
string GetLanguagesFolder();
|
|
|
|
string GetTranslatedPluginTitle();
|
|
|
|
string GetTranslatedPluginDescription();
|
|
}
|
|
} |