chore: fix localization capitalization (#758)

This commit is contained in:
bd_ 2024-03-09 01:57:38 -08:00 committed by GitHub
parent 0ff1da0734
commit 12de13a947
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -23,13 +23,13 @@ namespace nadena.dev.modular_avatar.core.editor
private static ImmutableDictionary<string, string> SupportedLanguageDisplayNames
= ImmutableDictionary<string, string>.Empty
.Add("en-us", "English")
.Add("ja-jp", "日本語")
.Add("zh-hans", "简体中文")
.Add("ko-kr", "한국어");
.Add("en-US", "English")
.Add("ja-JP", "日本語")
.Add("zh-Hans", "简体中文")
.Add("ko-KR", "한국어");
private static ImmutableList<string>
SupportedLanguages = new string[] {"en-us", "ja-jp", "zh-hans", "ko-kr"}.ToImmutableList();
SupportedLanguages = new string[] {"en-US", "ja-JP", "zh-Hans", "ko-KR"}.ToImmutableList();
private static string[] DisplayNames = SupportedLanguages.Select(l =>
{