Update LOCFile.cs

Changed two occurences of "langauge" to it's correct spelling "language".
This commit is contained in:
jerrinth3glitch
2022-08-26 20:28:32 -07:00
committed by GitHub
parent 6ddfbe0d65
commit 59477f85aa

View File

@@ -148,7 +148,7 @@ namespace PckStudio.Classes.FileTypes
{
if (LocKeys.ContainsKey(locKey))
return false;
Languages.ForEach( langauge => SetLocEntry(locKey, langauge, value) );
Languages.ForEach( language => SetLocEntry(locKey, language, value) );
return true;
}
@@ -181,4 +181,4 @@ namespace PckStudio.Classes.FileTypes
translation.Remove(language);
}
}
}
}