Skip to content

Commit 1f529de

Browse files
authored
Create ja.ts
1 parent 45afec4 commit 1f529de

File tree

1 file changed

+23
-0
lines changed

1 file changed

+23
-0
lines changed

src/translations/ja.ts

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
import type { TranslationsType } from './utils'
2+
3+
const ja: 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+
minute: '分',
21+
hour: '時',
22+
}
23+
export default ja

0 commit comments

Comments
 (0)