浏览代码

Make translation key case insensitive

habeebweeb 4 年之前
父节点
当前提交
06d34c86a9
共有 1 个文件被更改,包括 3 次插入1 次删除
  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
+                );
             }
         }