Flow.Launcher/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs
2021-07-08 07:45:15 +10:00

12 lines
No EOL
284 B
C#

namespace Flow.Launcher.Plugin
{
/// <summary>
/// Represent plugins that support internationalization
/// </summary>
public interface IPluginI18n : IFeatures
{
string GetTranslatedPluginTitle();
string GetTranslatedPluginDescription();
}
}