Skip to content

Commit 8b37375

Browse files
committed
fix: update default data to v41
1 parent 642ed29 commit 8b37375

File tree

1 file changed

+36
-11
lines changed

1 file changed

+36
-11
lines changed

src/cldr/default-data.js

Lines changed: 36 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ const defaultData = {
33
name: "en",
44
identity: {
55
version: {
6-
_number: "$Revision: 12418 $",
7-
_cldrVersion: "29"
6+
_unicodeVersion: "14.0.0",
7+
_cldrVersion: "41"
88
},
99
language: "en"
1010
},
@@ -22,7 +22,8 @@ const defaultData = {
2222
perMille: "‰",
2323
infinity: "∞",
2424
nan: "NaN",
25-
timeSeparator: ":"
25+
timeSeparator: ":",
26+
approximatelySign: "~"
2627
},
2728
decimal: {
2829
patterns: [
@@ -126,6 +127,7 @@ const defaultData = {
126127
Ehms: "E h:mm:ss a",
127128
EHms: "E HH:mm:ss",
128129
Gy: "y G",
130+
GyMd: "M/d/y GGGGG",
129131
GyMMM: "MMM y G",
130132
GyMMMd: "MMM d, y G",
131133
GyMMMEd: "E, MMM d, y G",
@@ -487,7 +489,9 @@ const defaultData = {
487489
},
488490
dateFields: {
489491
era: {
490-
wide: "era"
492+
wide: "era",
493+
short: "era",
494+
narrow: "era"
491495
},
492496
year: {
493497
wide: "year",
@@ -509,16 +513,35 @@ const defaultData = {
509513
short: "wk.",
510514
narrow: "wk."
511515
},
516+
weekOfMonth: {
517+
wide: "week of month",
518+
short: "wk. of mo.",
519+
narrow: "wk. of mo."
520+
},
512521
day: {
513522
wide: "day",
514523
short: "day",
515524
narrow: "day"
516525
},
526+
dayOfYear: {
527+
wide: "day of year",
528+
short: "day of yr.",
529+
narrow: "day of yr."
530+
},
517531
weekday: {
518-
wide: "day of the week"
532+
wide: "day of the week",
533+
short: "day of wk.",
534+
narrow: "day of wk."
535+
},
536+
weekdayOfMonth: {
537+
wide: "weekday of the month",
538+
short: "wkday. of mo.",
539+
narrow: "wkday. of mo."
519540
},
520541
dayperiod: {
521-
wide: "AM/PM"
542+
short: "AM/PM",
543+
wide: "AM/PM",
544+
narrow: "AM/PM"
522545
},
523546
hour: {
524547
wide: "hour",
@@ -535,13 +558,15 @@ const defaultData = {
535558
short: "sec.",
536559
narrow: "sec."
537560
},
561+
zone: {
562+
wide: "time zone",
563+
short: "zone",
564+
narrow: "zone"
565+
},
538566
millisecond: {
539-
wide: "millisecond",
567+
narrow: "ms",
540568
short: "ms",
541-
narrow: "ms"
542-
},
543-
zone: {
544-
wide: "time zone"
569+
wide: "milliseconds"
545570
}
546571
}
547572
}

0 commit comments

Comments
 (0)