Add Korean Language (#2601)

This commit is contained in:
kermieisinthehouse 2022-05-19 15:38:42 -07:00 committed by GitHub
parent b2ac022357
commit a142ec223e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 0 deletions

View file

@ -25,6 +25,7 @@ var matcher = language.NewMatcher([]language.Tag{
language.MustParse("tr-TR"),
language.MustParse("da-DK"),
language.MustParse("pl-PL"),
language.MustParse("ko-KR"),
})
// newCollator parses a locale into a collator

View file

@ -98,6 +98,7 @@ export const SettingsInterfacePanel: React.FC = () => {
<option value="hr-HR">Hrvatski (Preview)</option>
<option value="it-IT">Italiano</option>
<option value="ja-JP"> ()</option>
<option value="ko-KR"> () (Preview)</option>
<option value="nl-NL">Nederlands (Nederland)</option>
<option value="pl-PL">Polski</option>
<option value="pt-BR">Português (Brasil)</option>

View file

@ -16,6 +16,7 @@ import trTR from "./tr-TR.json";
import jaJP from "./ja-JP.json";
import plPL from "./pl-PL.json";
import daDK from "./da-DK.json";
import koKR from "./ko-KR.json";
export default {
deDE,
@ -36,4 +37,5 @@ export default {
jaJP,
plPL,
daDK,
koKR,
};