-
Notifications
You must be signed in to change notification settings - Fork 293
Expand file tree
/
Copy pathbase.ts
More file actions
150 lines (150 loc) · 2.66 KB
/
base.ts
File metadata and controls
150 lines (150 loc) · 2.66 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
export interface BaseLang {
save: string
confirm: string
cancel: string
done: string
noData: string
placeholder: string
select: string
edit: string
reset: string
close: string
back: string
video: {
errorTip: string
clickRetry: string
}
fixednav: {
activeText: string
inactiveText: string
}
infiniteloading: {
pullRefreshText: string
loadText: string
loadMoreText: string
}
pagination: {
prev: string
next: string
}
range: {
rangeText: string
}
calendaritem: {
weekdays: Array<string>
end: string
start: string
confirm: string
title: string
// eslint-disable-next-line @typescript-eslint/ban-types
monthTitle: Function
today: string
loadPreviousMonth: string
noEarlierMonth: string
}
shortpassword: {
title: string
description: string
tips: string
}
uploader: {
list: string
ready: string
readyUpload: string
waitingUpload: string
uploading: string
success: string
error: string
deleteWord: string
}
countdown: {
day: string
hour: string
minute: string
second: string
}
address: {
selectRegion: string
deliveryTo: string
chooseAnotherAddress: string
hotCity: string
selectProvince: string
}
signature: {
reSign: string
unsupported: string
}
ecard: {
chooseText: string
otherValueText: string
placeholder: string
}
timeselect: {
pickupTime: string
}
sku: {
buyNow: string
buyNumber: string
addToCard: string
}
skuheader: {
skuId: string
}
addresslist: {
addAddress: string
}
comment: {
complaintsText: string
// eslint-disable-next-line @typescript-eslint/ban-types
additionalReview: Function
// eslint-disable-next-line @typescript-eslint/ban-types
additionalImages: Function
}
searchbar: {
basePlaceholder: string
text: string
test: string
title1: string
title2: string
title3: string
title4: string
title5: string
title6: string
}
audio: {
back: string
forward: string
pause: string
start: string
mute: string
tips: string
}
avatarCropper: { rotate: string; selectImage: string }
datepicker: {
year: string
month: string
day: string
hour: string
min: string
seconds: string
}
pullToRefresh: {
pullingText: string
canReleaseText: string
refreshingText: string
completeText: string
}
tour: {
prevStepText: string
completeText: string
nextStepText: string
}
watermark: {
errorCanvasTips: string
}
mask: string
arithmetic: {
plus: string
minus: string
}
}