-
-
Notifications
You must be signed in to change notification settings - Fork 627
Expand file tree
/
Copy pathen-US.ts
More file actions
111 lines (110 loc) · 1.9 KB
/
en-US.ts
File metadata and controls
111 lines (110 loc) · 1.9 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
import { Message } from './index'
export default {
// Dialog
dialogTitle: 'Hint',
dialogConfirmButtonText: 'Confirm',
dialogCancelButtonText: 'Cancel',
// ActionSheet
actionSheetTitle: 'Select One',
// List
listLoadingText: 'Loading',
listFinishedText: 'No more',
listErrorText: 'Load fail',
// Picker
pickerTitle: 'Pick it',
pickerConfirmButtonText: 'Confirm',
pickerCancelButtonText: 'Cancel',
// date-picker
datePickerMonthDict: {
'01': {
name: 'January',
abbr: 'JAN',
},
'02': {
name: 'February',
abbr: 'FEB',
},
'03': {
name: 'March',
abbr: 'MAR',
},
'04': {
name: 'April',
abbr: 'APR',
},
'05': {
name: 'May',
abbr: 'MAY',
},
'06': {
name: 'June',
abbr: 'JUN',
},
'07': {
name: 'July',
abbr: 'JUL',
},
'08': {
name: 'August',
abbr: 'AUG',
},
'09': {
name: 'September',
abbr: 'SEP',
},
'10': {
name: 'October',
abbr: 'OCT',
},
'11': {
name: 'November',
abbr: 'NOV',
},
'12': {
name: 'December',
abbr: 'DEC',
},
},
datePickerWeekDict: {
'0': {
name: 'Sunday',
abbr: 'S',
},
'1': {
name: 'Monday',
abbr: 'M',
},
'2': {
name: 'Tuesday',
abbr: 'T',
},
'3': {
name: 'Wednesday',
abbr: 'W',
},
'4': {
name: 'Thursday',
abbr: 'T',
},
'5': {
name: 'Friday',
abbr: 'F',
},
'6': {
name: 'Saturday',
abbr: 'S',
},
},
datePickerSelected: ' selected',
datePickerHint: 'SELECT DATE',
// pagination
paginationItem: '',
paginationPage: 'page',
paginationJump: 'Go to',
// time-picker
timePickerHint: 'SELECT TIME',
// tour
tourPrevious: 'previous',
tourNext: 'next',
tourFinish: 'finish',
} satisfies Message