Skip to content

Commit 0c34c54

Browse files
localization: add Korean(ko_KR) support (#1864)
* localization: add Korean(ko_KR) support * [FIX] typo
1 parent 6e70b74 commit 0c34c54

File tree

3 files changed

+905
-0
lines changed

3 files changed

+905
-0
lines changed

src/App.axaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@
2424
<ResourceInclude x:Key="es_ES" Source="/Resources/Locales/es_ES.axaml"/>
2525
<ResourceInclude x:Key="ja_JP" Source="/Resources/Locales/ja_JP.axaml"/>
2626
<ResourceInclude x:Key="ta_IN" Source="/Resources/Locales/ta_IN.axaml"/>
27+
<ResourceInclude x:Key="ko_KR" Source="/Resources/Locales/ko_KR.axaml"/>
2728
</ResourceDictionary>
2829
</Application.Resources>
2930

src/Models/Locales.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ public class Locale
2121
new Locale("繁體中文", "zh_TW"),
2222
new Locale("日本語", "ja_JP"),
2323
new Locale("தமிழ் (Tamil)", "ta_IN"),
24+
new Locale("한국어", "ko_KR"),
2425
};
2526

2627
public Locale(string name, string key)

0 commit comments

Comments
 (0)