diff --git a/source/Plugins/AyaNova.Plugin.V8/V8.cs b/source/Plugins/AyaNova.Plugin.V8/V8.cs index 4ac5d7e..a9c5abc 100644 --- a/source/Plugins/AyaNova.Plugin.V8/V8.cs +++ b/source/Plugins/AyaNova.Plugin.V8/V8.cs @@ -510,6 +510,10 @@ namespace AyaNova.PlugIn.V8 //iterate v7 locale items foreach (var v7item in lt.LT) { + //skip over wikipage it's been dropped as it's an international term + if (v7item.Value == "O.WikiPage") continue; + + var v8key = Translatev7TranslationKey(v7item.Key); TranslationItem v8TransItem = trans.FirstOrDefault(m => m.Key == v8key); if (v8TransItem == null) { throw new ArgumentOutOfRangeException("On exporting custom locale " + i.Locale + " source key " + v7item.Key + ", destination key " + v8key + " was not found."); }