소스 검색

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
+                );
             }
         }