(string lang)
| 39 | |
| 40 | Dictionary<string, Info> simpleLoc = new(); |
| 41 | Info get(string lang) { |
| 42 | if (!simpleLoc.TryGetValue(lang, out var dict)) { dict = new(); simpleLoc.Add(lang, dict); } |
| 43 | return dict; |
| 44 | } |
| 45 | |
| 46 | foreach (var f_ in Directory.GetFiles(path, "*.json")) { |
| 47 |