Blame view

src/locale/lang/ja-JP.js 2.87 KB
5bd0f522   梁灏   fixed
1
  import setLang from '../lang';
a5dad1af   梁灏   fixed #1090 & clo...
2
3
  
  const lang = {
69a10b78   梁灏   fixed #787
4
      i: {
3d50db5b   Sergio Crisostomo   add datePanelLabe...
5
          locale: 'ja-JP',
69a10b78   梁灏   fixed #787
6
7
          select: {
              placeholder: '選んでください',
01b54e30   梁灏   Select support re...
8
9
              noMatch: 'マッチするデータなし',
              loading: 'ロード中'
69a10b78   梁灏   fixed #787
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
          },
          table: {
              noDataText: 'データなし',
              noFilteredDataText: 'スクリーニングしたデータなし',
              confirmFilter: 'スクリーニング',
              resetFilter: 'リセット',
              clearFilter: '全部'
          },
          datepicker: {
              selectDate: '日時を選んでください',
              selectTime: '時間を選んでください',
              startTime: 'スタート時間',
              endTime: '終了時間',
              clear: 'クリーア',
              ok: '確定',
5064c7b3   梁灏   update ja-JP
25
              datePanelLabel: '[yyyy年] [m月]',
69a10b78   梁灏   fixed #787
26
27
28
29
30
31
32
33
34
35
36
37
38
39
              month: '月',
              month1: '1 月',
              month2: '2 月',
              month3: '3 月',
              month4: '4 月',
              month5: '5 月',
              month6: '6 月',
              month7: '7 月',
              month8: '8 月',
              month9: '9 月',
              month10: '10 月',
              month11: '11 月',
              month12: '12 月',
              year: '年',
89303674   Sergio Crisostomo   add weekStartDay ...
40
              weekStartDay: '0',
69a10b78   梁灏   fixed #787
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
              weeks: {
                  sun: '日',
                  mon: '月',
                  tue: '火',
                  wed: '水',
                  thu: '木',
                  fri: '金',
                  sat: '土'
              },
              months: {
                  m1: '1月',
                  m2: '2月',
                  m3: '3月',
                  m4: '4月',
                  m5: '5月',
                  m6: '6月',
                  m7: '7月',
                  m8: '8月',
                  m9: '9月',
                  m10: '10月',
                  m11: '11月',
                  m12: '12月'
              }
          },
          transfer: {
              titles: {
                  source: 'ソースリスト',
                  target: 'ターゲットリスト'
              },
              filterPlaceholder: '検索内容を入力ください',
              notFoundText: '内容が見つかってなかった'
          },
          modal: {
              okText: '確定',
              cancelText: 'キャンセル'
          },
          poptip: {
              okText: '確定',
              cancelText: 'キャンセル'
          },
          page: {
              prev: '前へ',
              next: '次へ',
              total: '全部',
              item: '件',
              items: '件',
              prev5: '前の5ページへ',
              next5: '次の5ページへ',
              page: '件/ページ',
              goto: '',
              p: 'ページ目へ'
          },
          rate: {
              star: '点',
              stars: '点'
          },
          tree: {
              emptyText: 'データなし'
          }
      }
89303674   Sergio Crisostomo   add weekStartDay ...
101
  };
a5dad1af   梁灏   fixed #1090 & clo...
102
  
5bd0f522   梁灏   fixed
103
  setLang(lang);
a5dad1af   梁灏   fixed #1090 & clo...
104
105
  
  export default lang;