We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e3bf9e0 + 86f6d4d commit 73a645bCopy full SHA for 73a645b
src/translations/ko.ts
@@ -0,0 +1,21 @@
1
+import type { TranslationsType } from './utils'
2
+
3
+const ko: TranslationsType = {
4
+ save: '저장,
5
+ selectSingle: '날짜 선택',
6
+ selectMultiple: '여러 날짜 선택',
7
+ selectRange: '기간 선택',
8
+ notAccordingToDateFormat: (inputFormat) =>
9
+ `날짜 형식은 ${inputFormat}가 되어야 합니다`,
10
+ mustBeHigherThan: (date) => `${date} 보다 커야 합니다`,
11
+ mustBeLowerThan: (date) => `${date} 보다 작아야 합니다`,
12
+ mustBeBetween: (startDate, endDate) =>
13
+ `${startDate} - ${endDate} 사이여야 합니다`,
14
+ dateIsDisabled: '날짜는 허용되지 않습니다',
15
+ previous: '이전',
16
+ next: '다음',
17
+ typeInDate: '날짜 입력',
18
+ pickDateFromCalendar: '달력에서 날짜 선택',
19
+ close: '닫기',
20
+}
21
+export default ko
0 commit comments