This commit is contained in:
2018-08-31 16:38:21 +00:00
parent b5ccaa3c8e
commit b7c46370f8
3 changed files with 21 additions and 1 deletions

View File

@@ -437,6 +437,13 @@ namespace AyaNova.Biz
}
}
//Now add keys that were added after v7 for RAVEN using default locale values
foreach(string s in ValidKeys){
if(!NewLocaleDict.ContainsKey(s)){
NewLocaleDict.Add(s,GetDefaultLocalizedText(s).Result);
}
}
//Validate it's the correct number of keys expected
if (NewLocaleDict.Count != ValidKeys.Count)
{