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.
1 parent 45afec4 commit 1f529deCopy full SHA for 1f529de
src/translations/ja.ts
@@ -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