Random fixes. Lang file

This commit is contained in:
Marcel Baumgartner
2023-04-12 19:33:26 +02:00
parent 57b519e6bd
commit 24f131f264
4 changed files with 24 additions and 17 deletions

View File

@@ -21,7 +21,9 @@ public class SmartTranslateHelper
foreach (var line in lines)
{
var parts = line.Split(";");
content.Add(parts[0], parts[1]);
if(!content.ContainsKey(parts[0]))
content.Add(parts[0], parts[1]);
}
Languages.Add(langKey, content);