Blame view

src/locale/lang/en-US.js 2.59 KB
5bd0f522   梁灏   fixed
1
  import setLang from '../lang';
a5dad1af   梁灏   fixed #1090 & clo...
2
3
  
  const lang = {
d33b5143   梁灏   support i18n
4
      i: {
3d50db5b   Sergio Crisostomo   add datePanelLabe...
5
          locale: 'en-US',
d33b5143   梁灏   support i18n
6
7
          select: {
              placeholder: 'Select',
01b54e30   梁灏   Select support re...
8
9
              noMatch: 'No matching data',
              loading: 'Loading'
4ab11811   梁灏   some component su...
10
11
12
13
14
15
16
17
18
19
20
21
22
23
          },
          table: {
              noDataText: 'No Data',
              noFilteredDataText: 'No filter data',
              confirmFilter: 'Confirm',
              resetFilter: 'Reset',
              clearFilter: 'All'
          },
          datepicker: {
              selectDate: 'Select date',
              selectTime: 'Select time',
              startTime: 'Start Time',
              endTime: 'End Time',
              clear: 'Clear',
012cbf28   梁灏   update locale
24
              ok: 'OK',
3d50db5b   Sergio Crisostomo   add datePanelLabe...
25
26
              datePanelLabel: '[mmmm] [yyyy]',
              month: 'Month',
4ab11811   梁灏   some component su...
27
28
29
30
31
32
33
34
35
36
37
38
              month1: 'January',
              month2: 'February',
              month3: 'March',
              month4: 'April',
              month5: 'May',
              month6: 'June',
              month7: 'July',
              month8: 'August',
              month9: 'September',
              month10: 'October',
              month11: 'November',
              month12: 'December',
3d50db5b   Sergio Crisostomo   add datePanelLabe...
39
              year: 'Year',
89303674   Sergio Crisostomo   add weekStartDay ...
40
              weekStartDay: '0',
4ab11811   梁灏   some component su...
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
              weeks: {
                  sun: 'Sun',
                  mon: 'Mon',
                  tue: 'Tue',
                  wed: 'Wed',
                  thu: 'Thu',
                  fri: 'Fri',
                  sat: 'Sat'
              },
              months: {
                  m1: 'Jan',
                  m2: 'Feb',
                  m3: 'Mar',
                  m4: 'Apr',
                  m5: 'May',
                  m6: 'Jun',
                  m7: 'Jul',
                  m8: 'Aug',
                  m9: 'Sep',
                  m10: 'Oct',
                  m11: 'Nov',
                  m12: 'Dec'
              }
012cbf28   梁灏   update locale
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
          },
          transfer: {
              titles: {
                  source: 'Source',
                  target: 'Target'
              },
              filterPlaceholder: 'Search here',
              notFoundText: 'Not Found'
          },
          modal: {
              okText: 'OK',
              cancelText: 'Cancel'
          },
          poptip: {
              okText: 'OK',
              cancelText: 'Cancel'
          },
          page: {
              prev: 'Previous Page',
              next: 'Next Page',
              total: 'Total',
              item: 'item',
              items: 'items',
              prev5: 'Previous 5 Pages',
              next5: 'Next 5 Pages',
              page: '/page',
              goto: 'Goto',
              p: ''
e5ac7925   梁灏   update Rate
92
93
94
95
          },
          rate: {
              star: 'Star',
              stars: 'Stars'
e81207a2   梁灏   update Tree
96
97
98
          },
          tree: {
              emptyText: 'No Data'
d33b5143   梁灏   support i18n
99
100
          }
      }
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;