UNPKG

2.98 kBTypeScriptView Raw
1export interface locale {
2 momentLocale: string;
3 Timeline: {
4 expand: string;
5 fold: string;
6 };
7 Balloon: {
8 close: string;
9 };
10 Card: {
11 expand: string;
12 fold: string;
13 };
14 Calendar: {
15 today: string;
16 now: string;
17 ok: string;
18 clear: string;
19 month: string;
20 year: string;
21 prevYear: string;
22 nextYear: string;
23 prevMonth: string;
24 nextMonth: string;
25 prevDecade: string;
26 nextDecade: string;
27 yearSelectAriaLabel: string;
28 monthSelectAriaLabel: string;
29 };
30 DatePicker: {
31 placeholder: string;
32 datetimePlaceholder: string;
33 monthPlaceholder: string;
34 weekPlaceholder: string;
35 yearPlaceholder: string;
36 now: string;
37 selectTime: string;
38 selectDate: string;
39 ok: string;
40 clear: string;
41 startPlaceholder: string;
42 endPlaceholder: string;
43 hour: string;
44 minute: string;
45 second: string;
46 };
47 Dialog: {
48 close: string;
49 ok: string;
50 cancel: string;
51 };
52 Drawer: {
53 close: string;
54 };
55 Message: {
56 closeAriaLabel: string;
57 };
58 Pagination: {
59 prev: string;
60 next: string;
61 goTo: string;
62 page: string;
63 go: string;
64 total: string;
65 labelPrev: string;
66 labelNext: string;
67 inputAriaLabel: string;
68 selectAriaLabel: string;
69 pageSize: string;
70 };
71 Input: {
72 clear: string;
73 };
74 List: {
75 empty: string;
76 };
77 Select: {
78 selectPlaceholder: string;
79 autoCompletePlaceholder: string;
80 notFoundContent: string;
81 maxTagPlaceholder: string;
82 selectAll: string;
83 };
84 Table: {
85 empty: string;
86 ok: string;
87 reset: string;
88 asc: string;
89 desc: string;
90 expanded: string;
91 folded: string;
92 filter: string;
93 selectAll: string;
94 };
95 TimePicker: {
96 placeholder: string;
97 clear: string;
98 hour: string;
99 minute: string;
100 second: string;
101 };
102 Transfer: {
103 items: string;
104 item: string;
105 moveAll: string;
106 searchPlaceholder: string;
107 moveToLeft: string;
108 moveToRight: string;
109 };
110 Upload: {
111 card: {
112 cancel: string;
113 addPhoto: string;
114 download: string;
115 delete: string;
116 };
117 drag: {
118 text: string;
119 hint: string;
120 };
121 upload: {
122 delete: string;
123 };
124 };
125 Search: {
126 buttonText: string;
127 };
128 Tag: {
129 delete: string;
130 };
131 Rating: {
132 description: string;
133 };
134 Switch: {
135 on: string;
136 off: string;
137 };
138 Tab: {
139 closeAriaLabel: string;
140 };
141}
142
143export default locale;