Flow.Launcher/Flow.Launcher.Plugin/Interfaces/IPluginI18n.cs
2021-10-29 22:18:20 -05:00

22 lines
No EOL
507 B
C#

using System.Globalization;
namespace Flow.Launcher.Plugin
{
/// <summary>
/// Represent plugins that support internationalization
/// </summary>
public interface IPluginI18n : IFeatures
{
string GetTranslatedPluginTitle();
string GetTranslatedPluginDescription();
/// <summary>
/// The method will be invoked when language of flow changed
/// </summary>
void OnCultureInfoChanged(CultureInfo newCulture)
{
}
}
}