File tree 2 files changed +54
-0
lines changed
2 files changed +54
-0
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ export { default as es } from './es'
6
6
export { default as fa_ir } from './fa_ir'
7
7
export { default as fr } from './fr'
8
8
export { default as it } from './it'
9
+ export { default as ja } from './ja'
9
10
export { default as ko } from './ko'
10
11
export { default as nl } from './nl'
11
12
export { default as pl } from './pl'
Original file line number Diff line number Diff line change
1
+ import { defineLocale } from '../composables/defineLocale'
2
+
3
+ export default defineLocale ( {
4
+ name : '日本語' ,
5
+ code : 'ja' ,
6
+ messages : {
7
+ inputMenu : {
8
+ noMatch : '一致するデータがありません' ,
9
+ noData : 'データがありません' ,
10
+ create : '"{label}"を作成'
11
+ } ,
12
+ calendar : {
13
+ prevYear : '前年' ,
14
+ nextYear : '翌年' ,
15
+ prevMonth : '前月' ,
16
+ nextMonth : '翌月'
17
+ } ,
18
+ inputNumber : {
19
+ increment : '増やす' ,
20
+ decrement : '減らす'
21
+ } ,
22
+ commandPalette : {
23
+ noMatch : '一致するデータがありません' ,
24
+ noData : 'データがありません' ,
25
+ close : '閉じる'
26
+ } ,
27
+ selectMenu : {
28
+ noMatch : '一致するデータがありません' ,
29
+ noData : 'データがありません' ,
30
+ create : '"{label}"を作成'
31
+ } ,
32
+ toast : {
33
+ close : '閉じる'
34
+ } ,
35
+ carousel : {
36
+ prev : '前へ' ,
37
+ next : '次へ' ,
38
+ goto : 'スライド {slide} に移動'
39
+ } ,
40
+ modal : {
41
+ close : '閉じる'
42
+ } ,
43
+ slideover : {
44
+ close : '閉じる'
45
+ } ,
46
+ alert : {
47
+ close : '閉じる'
48
+ } ,
49
+ table : {
50
+ noData : 'データがありません'
51
+ }
52
+ }
53
+ } )
You can’t perform that action at this time.
0 commit comments