diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index adcb29a..c95c477 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -264,7 +264,7 @@ namespace AyaNova.PlugIn.V8 goto End; } - + progress.Append("Export cancelled before completing"); progress.Op(""); @@ -457,19 +457,16 @@ namespace AyaNova.PlugIn.V8 private async System.Threading.Tasks.Task ExportLocales(ProgressForm progress) { - //Skip stock locales already handled in Raven - //List SkipLocales = new List(); - //SkipLocales.Add("Deutsch"); - //SkipLocales.Add("English"); - //SkipLocales.Add("Español"); - //SkipLocales.Add("Français"); + //checksum locales + //if a recognized checksum then don't import because it means it wasn't modified from stock + LocaleList l = LocaleList.GetList(); progress.Append("Exporting " + l.Count.ToString() + " Locales"); foreach (LocaleList.LocaleListInfo i in l) { if (!progress.KeepGoing) return; - if (i.Locale!="English") + if (i.Locale != "English") { LocalizedTextTable lt = LocalizedTextTable.Load(i.Locale); //todo: all locales except English default need to be dealt with