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