mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-29 18:55:06 +08:00
chore: fix localization capitalization (#758)
This commit is contained in:
parent
0ff1da0734
commit
12de13a947
@ -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 =>
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user