formcfg-en.js
2.61 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
webshims.validityMessages.en = {
"typeMismatch": {
"defaultMessage": "Please enter a valid value.",
"email": "Please enter an email address.",
"url": "Please enter a URL."
},
"badInput": {
"defaultMessage": "Please enter a valid value.",
"number": "Please enter a number.",
"date": "Please enter a date.",
"time": "Please enter a time.",
"range": "Invalid input.",
"month": "Please enter a valid value.",
"datetime-local": "Please enter a datetime."
},
"rangeUnderflow": {
"defaultMessage": "Value must be greater than or equal to {%min}.",
"date": "Value must be at or after {%min}.",
"time": "Value must be at or after {%min}.",
"datetime-local": "Value must be at or after {%min}.",
"month": "Value must be at or after {%min}."
},
"rangeOverflow": {
"defaultMessage": "Value must be less than or equal to {%max}.",
"date": "Value must be at or before {%max}.",
"time": "Value must be at or before {%max}.",
"datetime-local": "Value must be at or before {%max}.",
"month": "Value must be at or before {%max}."
},
"stepMismatch": "Invalid input.",
"tooLong": "Please enter at most {%maxlength} character(s). You entered {%valueLen}.",
"tooShort": "Please enter at least {%minlength} character(s). You entered {%valueLen}.",
"patternMismatch": "Invalid input. {%title}",
"valueMissing": {
"defaultMessage": "Please fill out this field.",
"checkbox": "Please check this box if you want to proceed.",
"select": "Please select an option.",
"radio": "Please select an option."
}
};
webshims.formcfg.en = {
"numberFormat": {
".": ".",
",": ","
},
"numberSigns": ".",
"dateSigns": "-",
"timeSigns": ":. ",
"dFormat": "-",
"patterns": {
"d": "yy-mm-dd"
},
"month": {
"currentText": "This month"
},
"time": {
"currentText": "Now"
},
"date": {
"closeText": "Done",
"clear": "Clear",
"prevText": "Prev",
"nextText": "Next",
"currentText": "Today",
"monthNames": [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
"monthNamesShort": [
"Jan",
"Feb",
"Mar",
"Apr",
"May",
"Jun",
"Jul",
"Aug",
"Sep",
"Oct",
"Nov",
"Dec"
],
"dayNames": [
"Sunday",
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday"
],
"dayNamesShort": [
"Sun",
"Mon",
"Tue",
"Wed",
"Thu",
"Fri",
"Sat"
],
"dayNamesMin": [
"Su",
"Mo",
"Tu",
"We",
"Th",
"Fr",
"Sa"
],
"weekHeader": "Wk",
"firstDay": 1,
"isRTL": false,
"showMonthAfterYear": false,
"yearSuffix": ""
}
};