We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f5bcbc0 commit c8ca4ceCopy full SHA for c8ca4ce
HomeLive.Plugins/HomePlugin.cs
@@ -5,7 +5,7 @@ namespace HomeLive.Plugins;
5
6
public class HomePlugin : IPlugin
7
{
8
- public const string Version = "3.2.2";
+ public const string Version = "3.2.3";
9
public string Name => nameof(HomePlugin);
10
public int Priority => 1;
11
@@ -82,5 +82,12 @@ public void NotifySaveLoaded()
82
Plugin.Enabled = false;
83
}
84
85
+ public void NotifyDisplayLanguageChanged(string language)
86
+ {
87
+ Language = language;
88
+ TranslateDictionary(language);
89
+ TranslatePlugins();
90
+ }
91
+
92
public bool TryLoadFile(string path) => DumperForm.TryLoadFile(path, SaveFileEditor, PKMEditor);
93
0 commit comments