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

22 lines
507 B
C#
Raw Permalink Normal View History

using System.Globalization;
namespace Flow.Launcher.Plugin
2021-07-07 17:47:20 +00:00
{
/// <summary>
/// Represent plugins that support internationalization
/// </summary>
public interface IPluginI18n : IFeatures
{
string GetTranslatedPluginTitle();
string GetTranslatedPluginDescription();
2021-10-30 03:18:20 +00:00
/// <summary>
/// The method will be invoked when language of flow changed
/// </summary>
void OnCultureInfoChanged(CultureInfo newCulture)
{
}
2021-07-07 17:47:20 +00:00
}
}