Skip to content

Commit 93caffc

Browse files
feat(locales): add Korean locale (#419)
1 parent a7dd2f1 commit 93caffc

File tree

3 files changed

+24
-0
lines changed

3 files changed

+24
-0
lines changed

src/locales/ko-KR.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"todayButton": "오늘 날짜",
3+
"nextMonth": "다음 달",
4+
"previousMonth": "이전 달",
5+
"nextYear": "다음 년도",
6+
"previousYear": "이전 년도",
7+
"weekdays": ["", "", "", "", "", "", ""],
8+
"months": [
9+
"1월",
10+
"2월",
11+
"3월",
12+
"4월",
13+
"5월",
14+
"6월",
15+
"7월",
16+
"8월",
17+
"9월",
18+
"10월",
19+
"11월",
20+
"12월"
21+
]
22+
}

src/types/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ export type LocaleOptions =
2626
| 'he-IL'
2727
| 'it-IT'
2828
| 'ja-JP'
29+
| 'ko-KR'
2930
| 'nb-NO'
3031
| 'pl-PL'
3132
| 'pt-BR'

stories/data.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ const locale = <const>[
1616
'he-IL',
1717
'it-IT',
1818
'ja-JP',
19+
'ko-KR',
1920
'nb-NO',
2021
'pl-PL',
2122
'pt-BR',

0 commit comments

Comments
 (0)