Browse Source

Make translation key case insensitive

habeebweeb 4 years ago
parent
commit
06d34c86a9
1 changed files with 3 additions and 1 deletions
  1. 3 1
      COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/Translation.cs

+ 3 - 1
COM3D2.MeidoPhotoStudio.Plugin/MeidoPhotoStudio/Translation.cs

@@ -30,7 +30,9 @@ namespace COM3D2.MeidoPhotoStudio.Plugin
             foreach (JProperty translationProp in translation.AsJEnumerable())
             {
                 JToken token = translationProp.Value;
-                Translations[translationProp.Path] = token.ToObject<Dictionary<string, string>>();
+                Translations[translationProp.Path] = new Dictionary<string, string>(
+                    token.ToObject<Dictionary<string, string>>(), StringComparer.InvariantCultureIgnoreCase
+                );
             }
         }