Flow.Launcher/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs

12 lines
284 B
C#
Raw Normal View History

2021-07-07 17:47:20 +00:00
namespace Flow.Launcher.Plugin
{
/// <summary>
/// Represent plugins that support internationalization
/// </summary>
public interface IPluginI18n : IFeatures
{
string GetTranslatedPluginTitle();
string GetTranslatedPluginDescription();
}
}