@bereasoftware/time-guard 2.0.5 → 2.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. package/README.en.md +0 -4
  2. package/README.md +0 -4
  3. package/dist/calendars/index.es.js +1 -1
  4. package/dist/locales/index.es.js +1 -1
  5. package/dist/plugins/advanced-format.es.js +1 -1
  6. package/dist/plugins/duration.es.js +1 -1
  7. package/dist/plugins/relative-time.es.js +1 -1
  8. package/dist/time-guard.cjs +1 -1
  9. package/dist/time-guard.es.js +3627 -144
  10. package/dist/time-guard.iife.js +1 -1
  11. package/dist/time-guard.umd.js +1 -1
  12. package/dist/types/adapters/temporal.adapter.d.ts +60 -0
  13. package/dist/types/calendars/calendar.manager.d.ts +52 -0
  14. package/dist/types/calendars/index.d.ts +81 -0
  15. package/dist/types/formatters/date.formatter.d.ts +21 -0
  16. package/dist/types/index.d.ts +19 -0
  17. package/dist/types/locales/additional.locale.d.ts +5 -0
  18. package/dist/types/locales/asian.locale.d.ts +9 -0
  19. package/dist/types/locales/english.locale.d.ts +6 -0
  20. package/dist/types/locales/european.locale.d.ts +9 -0
  21. package/dist/types/locales/index.d.ts +17 -0
  22. package/dist/types/locales/locale.manager.d.ts +42 -0
  23. package/dist/types/locales/locales-data.d.ts +17 -0
  24. package/dist/types/locales/middle-eastern.locale.d.ts +5 -0
  25. package/dist/types/locales/nordic.locale.d.ts +6 -0
  26. package/dist/types/locales/romance.locale.d.ts +7 -0
  27. package/dist/types/locales/slavic.locale.d.ts +6 -0
  28. package/dist/types/locales/spanish.locale.d.ts +5 -0
  29. package/dist/types/plugins/advanced-format/index.d.ts +47 -0
  30. package/dist/types/plugins/duration/index.d.ts +107 -0
  31. package/dist/types/plugins/duration/types.d.ts +85 -0
  32. package/dist/types/plugins/index.d.ts +10 -0
  33. package/dist/types/plugins/manager.d.ts +58 -0
  34. package/dist/types/plugins/relative-time/index.d.ts +39 -0
  35. package/dist/types/plugins/relative-time/types.d.ts +27 -0
  36. package/dist/types/polyfill-loader.d.ts +5 -0
  37. package/dist/types/time-guard.d.ts +151 -1
  38. package/dist/types/types/index.d.ts +301 -0
  39. package/package.json +15 -24
  40. package/dist/full.cjs +0 -1
  41. package/dist/full.es.js +0 -4341
  42. package/dist/types/calendars.d.ts +0 -1
  43. package/dist/types/full.d.ts +0 -1
  44. package/dist/types/locales.d.ts +0 -1
  45. package/dist/types/plugins/advanced-format.d.ts +0 -2
  46. package/dist/types/plugins/duration.d.ts +0 -3
  47. package/dist/types/plugins/relative-time.d.ts +0 -3
@@ -1,4 +1,5 @@
1
- /*! time-guard v2.0.5 | (c) 2026 Berea-Soft | MIT License | https://github.com/Berea-Soft/time-guard */
1
+ /*! time-guard v2.0.6 | (c) 2026 Berea-Soft | MIT License | https://github.com/Berea-Soft/time-guard */
2
+ import "@js-temporal/polyfill";
2
3
  //#region src/adapters/temporal.adapter.ts
3
4
  var e = null;
4
5
  function t() {
@@ -310,6 +311,29 @@ var n = class {
310
311
  temporal;
311
312
  config;
312
313
  formatterInstance;
314
+ static ZERO_DURATION = {
315
+ years: 0,
316
+ months: 0,
317
+ days: 0,
318
+ hours: 0,
319
+ minutes: 0,
320
+ seconds: 0,
321
+ milliseconds: 0
322
+ };
323
+ static isLeapYearValue(e) {
324
+ return e % 4 == 0 && e % 100 != 0 || e % 400 == 0;
325
+ }
326
+ static toDurationParts(e) {
327
+ return {
328
+ years: Math.floor(e.years || 0),
329
+ months: Math.floor(e.months || 0),
330
+ days: Math.floor(e.days || 0),
331
+ hours: Math.floor(e.hours || 0),
332
+ minutes: Math.floor(e.minutes || 0),
333
+ seconds: Math.floor(e.seconds || 0),
334
+ milliseconds: Math.floor(e.milliseconds || 0)
335
+ };
336
+ }
313
337
  constructor(e, t) {
314
338
  if (this.formatterInstance = new o(), this.config = {
315
339
  locale: t?.locale || "en",
@@ -518,36 +542,20 @@ var n = class {
518
542
  return n.toPlainDateTime(this.temporal).add({ months: 1 }).with({ day: 1 }).subtract({ days: 1 }).day;
519
543
  }
520
544
  daysInYear() {
521
- let e = this.year();
522
- return e % 4 == 0 && e % 100 != 0 || e % 400 == 0 ? 366 : 365;
545
+ let t = this.year();
546
+ return e.isLeapYearValue(t) ? 366 : 365;
523
547
  }
524
548
  inLeapYear() {
525
- let e = n.toPlainDateTime(this.temporal).year;
526
- return e % 4 == 0 && e % 100 != 0 || e % 400 == 0;
549
+ let t = n.toPlainDateTime(this.temporal);
550
+ return e.isLeapYearValue(t.year);
527
551
  }
528
- until(e) {
529
- let t = n.toPlainDateTime(this.temporal), r = n.toPlainDateTime(e.temporal);
552
+ until(t) {
553
+ let r = n.toPlainDateTime(this.temporal), i = n.toPlainDateTime(t.temporal);
530
554
  try {
531
- let e = r.since(t);
532
- return {
533
- years: Math.floor(e.years || 0),
534
- months: Math.floor(e.months || 0),
535
- days: Math.floor(e.days || 0),
536
- hours: Math.floor(e.hours || 0),
537
- minutes: Math.floor(e.minutes || 0),
538
- seconds: Math.floor(e.seconds || 0),
539
- milliseconds: Math.floor(e.milliseconds || 0)
540
- };
555
+ let t = i.since(r);
556
+ return e.toDurationParts(t);
541
557
  } catch {
542
- return {
543
- years: 0,
544
- months: 0,
545
- days: 0,
546
- hours: 0,
547
- minutes: 0,
548
- seconds: 0,
549
- milliseconds: 0
550
- };
558
+ return { ...e.ZERO_DURATION };
551
559
  }
552
560
  }
553
561
  round(e = {}) {
@@ -643,29 +651,13 @@ var n = class {
643
651
  endOfDay() {
644
652
  return this.endOf("day");
645
653
  }
646
- since(e) {
647
- let t = n.toPlainDateTime(this.temporal), r = n.toPlainDateTime(e.temporal);
654
+ since(t) {
655
+ let r = n.toPlainDateTime(this.temporal), i = n.toPlainDateTime(t.temporal);
648
656
  try {
649
- let e = t.since(r);
650
- return {
651
- years: Math.floor(e.years || 0),
652
- months: Math.floor(e.months || 0),
653
- days: Math.floor(e.days || 0),
654
- hours: Math.floor(e.hours || 0),
655
- minutes: Math.floor(e.minutes || 0),
656
- seconds: Math.floor(e.seconds || 0),
657
- milliseconds: Math.floor(e.milliseconds || 0)
658
- };
657
+ let t = r.since(i);
658
+ return e.toDurationParts(t);
659
659
  } catch {
660
- return {
661
- years: 0,
662
- months: 0,
663
- days: 0,
664
- hours: 0,
665
- minutes: 0,
666
- seconds: 0,
667
- milliseconds: 0
668
- };
660
+ return { ...e.ZERO_DURATION };
669
661
  }
670
662
  }
671
663
  toDurationString(t) {
@@ -691,11 +683,9 @@ var n = class {
691
683
  isYesterday() {
692
684
  return this.isSame(e.now().subtract({ day: 1 }), "day");
693
685
  }
694
- }, c = class {
695
- id = "gregory";
696
- name = "Gregorian Calendar";
697
- locale = "en";
698
- monthNames = [
686
+ }, c = {
687
+ name: "en",
688
+ months: [
699
689
  "January",
700
690
  "February",
701
691
  "March",
@@ -708,8 +698,8 @@ var n = class {
708
698
  "October",
709
699
  "November",
710
700
  "December"
711
- ];
712
- monthNamesShort = [
701
+ ],
702
+ monthsShort: [
713
703
  "Jan",
714
704
  "Feb",
715
705
  "Mar",
@@ -722,8 +712,8 @@ var n = class {
722
712
  "Oct",
723
713
  "Nov",
724
714
  "Dec"
725
- ];
726
- weekdayNames = [
715
+ ],
716
+ weekdays: [
727
717
  "Sunday",
728
718
  "Monday",
729
719
  "Tuesday",
@@ -731,8 +721,8 @@ var n = class {
731
721
  "Thursday",
732
722
  "Friday",
733
723
  "Saturday"
734
- ];
735
- weekdayNamesShort = [
724
+ ],
725
+ weekdaysShort: [
736
726
  "Sun",
737
727
  "Mon",
738
728
  "Tue",
@@ -740,90 +730,3198 @@ var n = class {
740
730
  "Thu",
741
731
  "Fri",
742
732
  "Sat"
743
- ];
744
- getMonthName(e, t = !1) {
745
- return (t ? this.monthNamesShort : this.monthNames)[Math.max(0, Math.min(11, e - 1))];
746
- }
747
- getWeekdayName(e, t = !1) {
748
- return (t ? this.weekdayNamesShort : this.weekdayNames)[Math.max(0, Math.min(6, e - 1))];
749
- }
750
- isLeapYear(e) {
751
- return e % 4 == 0 && e % 100 != 0 || e % 400 == 0;
752
- }
753
- daysInMonth(e, t) {
754
- return t === 2 && this.isLeapYear(e) ? 29 : [
755
- 31,
756
- 28,
757
- 31,
758
- 30,
759
- 31,
760
- 30,
761
- 31,
762
- 31,
763
- 30,
764
- 31,
765
- 30,
766
- 31
767
- ][Math.max(0, Math.min(11, t - 1))];
768
- }
769
- daysInYear(e) {
770
- return this.isLeapYear(e) ? 366 : 365;
771
- }
772
- }, l = class e {
773
- static instance;
774
- calendars = /* @__PURE__ */ new Map();
775
- defaultCalendar = "gregory";
776
- constructor() {
777
- this.register(new c());
778
- }
779
- static getInstance() {
780
- return e.instance ||= new e(), e.instance;
781
- }
782
- register(e) {
783
- this.calendars.set(e.id, e);
784
- }
785
- get(e) {
786
- return this.calendars.get(e);
787
- }
788
- list() {
789
- return Array.from(this.calendars.keys());
790
- }
791
- setDefault(e) {
792
- this.calendars.has(e) && (this.defaultCalendar = e);
793
- }
794
- getDefault() {
795
- let e = this.calendars.get(this.defaultCalendar);
796
- if (!e) throw Error(`Default calendar '${this.defaultCalendar}' not found`);
797
- return e;
798
- }
799
- }, u = l.getInstance(), d = class e {
800
- static instance;
801
- plugins = /* @__PURE__ */ new Map();
802
- static getInstance() {
803
- return e.instance ||= new e(), e.instance;
804
- }
805
- static use(t, n, r) {
806
- e.getInstance().register(t, n, r);
807
- }
808
- static useMultiple(t, n, r) {
809
- let i = e.getInstance();
810
- t.forEach((e) => i.register(e, n, r));
811
- }
812
- static getPlugin(t) {
813
- return e.getInstance().plugins.get(t);
814
- }
815
- static hasPlugin(t) {
816
- return e.getInstance().plugins.has(t);
817
- }
818
- static listPlugins() {
819
- let t = e.getInstance();
820
- return Array.from(t.plugins.keys());
733
+ ],
734
+ weekdaysMin: [
735
+ "Su",
736
+ "Mo",
737
+ "Tu",
738
+ "We",
739
+ "Th",
740
+ "Fr",
741
+ "Sa"
742
+ ],
743
+ meridiem: {
744
+ am: "AM",
745
+ pm: "PM"
746
+ },
747
+ formats: {
748
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
749
+ date: "YYYY-MM-DD",
750
+ time: "HH:mm:ss",
751
+ datetime: "YYYY-MM-DD HH:mm:ss",
752
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
821
753
  }
822
- static unuse(t) {
823
- return e.getInstance().plugins.delete(t);
754
+ }, l = {
755
+ name: "en-au",
756
+ months: [
757
+ "January",
758
+ "February",
759
+ "March",
760
+ "April",
761
+ "May",
762
+ "June",
763
+ "July",
764
+ "August",
765
+ "September",
766
+ "October",
767
+ "November",
768
+ "December"
769
+ ],
770
+ monthsShort: [
771
+ "Jan",
772
+ "Feb",
773
+ "Mar",
774
+ "Apr",
775
+ "May",
776
+ "Jun",
777
+ "Jul",
778
+ "Aug",
779
+ "Sep",
780
+ "Oct",
781
+ "Nov",
782
+ "Dec"
783
+ ],
784
+ weekdays: [
785
+ "Sunday",
786
+ "Monday",
787
+ "Tuesday",
788
+ "Wednesday",
789
+ "Thursday",
790
+ "Friday",
791
+ "Saturday"
792
+ ],
793
+ weekdaysShort: [
794
+ "Sun",
795
+ "Mon",
796
+ "Tue",
797
+ "Wed",
798
+ "Thu",
799
+ "Fri",
800
+ "Sat"
801
+ ],
802
+ weekdaysMin: [
803
+ "Su",
804
+ "Mo",
805
+ "Tu",
806
+ "We",
807
+ "Th",
808
+ "Fr",
809
+ "Sa"
810
+ ],
811
+ meridiem: {
812
+ am: "AM",
813
+ pm: "PM"
814
+ },
815
+ formats: {
816
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
817
+ date: "DD/MM/YYYY",
818
+ time: "HH:mm:ss",
819
+ datetime: "DD/MM/YYYY HH:mm:ss",
820
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
824
821
  }
825
- static clear() {
826
- e.getInstance().plugins.clear();
822
+ }, u = {
823
+ name: "en-gb",
824
+ months: [
825
+ "January",
826
+ "February",
827
+ "March",
828
+ "April",
829
+ "May",
830
+ "June",
831
+ "July",
832
+ "August",
833
+ "September",
834
+ "October",
835
+ "November",
836
+ "December"
837
+ ],
838
+ monthsShort: [
839
+ "Jan",
840
+ "Feb",
841
+ "Mar",
842
+ "Apr",
843
+ "May",
844
+ "Jun",
845
+ "Jul",
846
+ "Aug",
847
+ "Sep",
848
+ "Oct",
849
+ "Nov",
850
+ "Dec"
851
+ ],
852
+ weekdays: [
853
+ "Sunday",
854
+ "Monday",
855
+ "Tuesday",
856
+ "Wednesday",
857
+ "Thursday",
858
+ "Friday",
859
+ "Saturday"
860
+ ],
861
+ weekdaysShort: [
862
+ "Sun",
863
+ "Mon",
864
+ "Tue",
865
+ "Wed",
866
+ "Thu",
867
+ "Fri",
868
+ "Sat"
869
+ ],
870
+ weekdaysMin: [
871
+ "Su",
872
+ "Mo",
873
+ "Tu",
874
+ "We",
875
+ "Th",
876
+ "Fr",
877
+ "Sa"
878
+ ],
879
+ meridiem: {
880
+ am: "AM",
881
+ pm: "PM"
882
+ },
883
+ formats: {
884
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
885
+ date: "DD/MM/YYYY",
886
+ time: "HH:mm:ss",
887
+ datetime: "DD/MM/YYYY HH:mm:ss",
888
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
889
+ }
890
+ }, d = {
891
+ name: "en-ca",
892
+ months: [
893
+ "January",
894
+ "February",
895
+ "March",
896
+ "April",
897
+ "May",
898
+ "June",
899
+ "July",
900
+ "August",
901
+ "September",
902
+ "October",
903
+ "November",
904
+ "December"
905
+ ],
906
+ monthsShort: [
907
+ "Jan",
908
+ "Feb",
909
+ "Mar",
910
+ "Apr",
911
+ "May",
912
+ "Jun",
913
+ "Jul",
914
+ "Aug",
915
+ "Sep",
916
+ "Oct",
917
+ "Nov",
918
+ "Dec"
919
+ ],
920
+ weekdays: [
921
+ "Sunday",
922
+ "Monday",
923
+ "Tuesday",
924
+ "Wednesday",
925
+ "Thursday",
926
+ "Friday",
927
+ "Saturday"
928
+ ],
929
+ weekdaysShort: [
930
+ "Sun",
931
+ "Mon",
932
+ "Tue",
933
+ "Wed",
934
+ "Thu",
935
+ "Fri",
936
+ "Sat"
937
+ ],
938
+ weekdaysMin: [
939
+ "Su",
940
+ "Mo",
941
+ "Tu",
942
+ "We",
943
+ "Th",
944
+ "Fr",
945
+ "Sa"
946
+ ],
947
+ meridiem: {
948
+ am: "AM",
949
+ pm: "PM"
950
+ },
951
+ formats: {
952
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
953
+ date: "YYYY-MM-DD",
954
+ time: "HH:mm:ss",
955
+ datetime: "YYYY-MM-DD HH:mm:ss",
956
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
957
+ }
958
+ }, f = {
959
+ en: c,
960
+ "en-au": l,
961
+ "en-gb": u,
962
+ "en-ca": d
963
+ }, p = {
964
+ name: "es",
965
+ months: [
966
+ "Enero",
967
+ "Febrero",
968
+ "Marzo",
969
+ "Abril",
970
+ "Mayo",
971
+ "Junio",
972
+ "Julio",
973
+ "Agosto",
974
+ "Septiembre",
975
+ "Octubre",
976
+ "Noviembre",
977
+ "Diciembre"
978
+ ],
979
+ monthsShort: [
980
+ "Ene",
981
+ "Feb",
982
+ "Mar",
983
+ "Abr",
984
+ "May",
985
+ "Jun",
986
+ "Jul",
987
+ "Ago",
988
+ "Sep",
989
+ "Oct",
990
+ "Nov",
991
+ "Dic"
992
+ ],
993
+ weekdays: [
994
+ "Domingo",
995
+ "Lunes",
996
+ "Martes",
997
+ "Miércoles",
998
+ "Jueves",
999
+ "Viernes",
1000
+ "Sábado"
1001
+ ],
1002
+ weekdaysShort: [
1003
+ "Dom",
1004
+ "Lun",
1005
+ "Mar",
1006
+ "Mié",
1007
+ "Jue",
1008
+ "Vie",
1009
+ "Sáb"
1010
+ ],
1011
+ weekdaysMin: [
1012
+ "Do",
1013
+ "Lu",
1014
+ "Ma",
1015
+ "Mi",
1016
+ "Ju",
1017
+ "Vi",
1018
+ "Sa"
1019
+ ],
1020
+ meridiem: {
1021
+ am: "AM",
1022
+ pm: "PM"
1023
+ },
1024
+ formats: {
1025
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1026
+ date: "DD/MM/YYYY",
1027
+ time: "HH:mm:ss",
1028
+ datetime: "DD/MM/YYYY HH:mm:ss",
1029
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1030
+ }
1031
+ }, m = {
1032
+ name: "es-mx",
1033
+ months: [
1034
+ "Enero",
1035
+ "Febrero",
1036
+ "Marzo",
1037
+ "Abril",
1038
+ "Mayo",
1039
+ "Junio",
1040
+ "Julio",
1041
+ "Agosto",
1042
+ "Septiembre",
1043
+ "Octubre",
1044
+ "Noviembre",
1045
+ "Diciembre"
1046
+ ],
1047
+ monthsShort: [
1048
+ "Ene",
1049
+ "Feb",
1050
+ "Mar",
1051
+ "Abr",
1052
+ "May",
1053
+ "Jun",
1054
+ "Jul",
1055
+ "Ago",
1056
+ "Sep",
1057
+ "Oct",
1058
+ "Nov",
1059
+ "Dic"
1060
+ ],
1061
+ weekdays: [
1062
+ "Domingo",
1063
+ "Lunes",
1064
+ "Martes",
1065
+ "Miércoles",
1066
+ "Jueves",
1067
+ "Viernes",
1068
+ "Sábado"
1069
+ ],
1070
+ weekdaysShort: [
1071
+ "Dom",
1072
+ "Lun",
1073
+ "Mar",
1074
+ "Mié",
1075
+ "Jue",
1076
+ "Vie",
1077
+ "Sáb"
1078
+ ],
1079
+ weekdaysMin: [
1080
+ "Do",
1081
+ "Lu",
1082
+ "Ma",
1083
+ "Mi",
1084
+ "Ju",
1085
+ "Vi",
1086
+ "Sa"
1087
+ ],
1088
+ meridiem: {
1089
+ am: "AM",
1090
+ pm: "PM"
1091
+ },
1092
+ formats: {
1093
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1094
+ date: "DD/MM/YYYY",
1095
+ time: "HH:mm:ss",
1096
+ datetime: "DD/MM/YYYY HH:mm:ss",
1097
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1098
+ }
1099
+ }, h = {
1100
+ name: "es-us",
1101
+ months: [
1102
+ "Enero",
1103
+ "Febrero",
1104
+ "Marzo",
1105
+ "Abril",
1106
+ "Mayo",
1107
+ "Junio",
1108
+ "Julio",
1109
+ "Agosto",
1110
+ "Septiembre",
1111
+ "Octubre",
1112
+ "Noviembre",
1113
+ "Diciembre"
1114
+ ],
1115
+ monthsShort: [
1116
+ "Ene",
1117
+ "Feb",
1118
+ "Mar",
1119
+ "Abr",
1120
+ "May",
1121
+ "Jun",
1122
+ "Jul",
1123
+ "Ago",
1124
+ "Sep",
1125
+ "Oct",
1126
+ "Nov",
1127
+ "Dic"
1128
+ ],
1129
+ weekdays: [
1130
+ "Domingo",
1131
+ "Lunes",
1132
+ "Martes",
1133
+ "Miércoles",
1134
+ "Jueves",
1135
+ "Viernes",
1136
+ "Sábado"
1137
+ ],
1138
+ weekdaysShort: [
1139
+ "Dom",
1140
+ "Lun",
1141
+ "Mar",
1142
+ "Mié",
1143
+ "Jue",
1144
+ "Vie",
1145
+ "Sáb"
1146
+ ],
1147
+ weekdaysMin: [
1148
+ "Do",
1149
+ "Lu",
1150
+ "Ma",
1151
+ "Mi",
1152
+ "Ju",
1153
+ "Vi",
1154
+ "Sa"
1155
+ ],
1156
+ meridiem: {
1157
+ am: "AM",
1158
+ pm: "PM"
1159
+ },
1160
+ formats: {
1161
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1162
+ date: "MM/DD/YYYY",
1163
+ time: "HH:mm:ss",
1164
+ datetime: "MM/DD/YYYY HH:mm:ss",
1165
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1166
+ }
1167
+ }, g = {
1168
+ es: p,
1169
+ "es-mx": m,
1170
+ "es-us": h
1171
+ }, _ = {
1172
+ name: "fr",
1173
+ months: [
1174
+ "janvier",
1175
+ "février",
1176
+ "mars",
1177
+ "avril",
1178
+ "mai",
1179
+ "juin",
1180
+ "juillet",
1181
+ "août",
1182
+ "septembre",
1183
+ "octobre",
1184
+ "novembre",
1185
+ "décembre"
1186
+ ],
1187
+ monthsShort: [
1188
+ "janv.",
1189
+ "févr.",
1190
+ "mars",
1191
+ "avr.",
1192
+ "mai",
1193
+ "juin",
1194
+ "juil.",
1195
+ "août",
1196
+ "sept.",
1197
+ "oct.",
1198
+ "nov.",
1199
+ "déc."
1200
+ ],
1201
+ weekdays: [
1202
+ "dimanche",
1203
+ "lundi",
1204
+ "mardi",
1205
+ "mercredi",
1206
+ "jeudi",
1207
+ "vendredi",
1208
+ "samedi"
1209
+ ],
1210
+ weekdaysShort: [
1211
+ "dim.",
1212
+ "lun.",
1213
+ "mar.",
1214
+ "mer.",
1215
+ "jeu.",
1216
+ "ven.",
1217
+ "sam."
1218
+ ],
1219
+ weekdaysMin: [
1220
+ "di",
1221
+ "lu",
1222
+ "ma",
1223
+ "me",
1224
+ "je",
1225
+ "ve",
1226
+ "sa"
1227
+ ],
1228
+ meridiem: {
1229
+ am: "AM",
1230
+ pm: "PM"
1231
+ },
1232
+ formats: {
1233
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1234
+ date: "DD/MM/YYYY",
1235
+ time: "HH:mm:ss",
1236
+ datetime: "DD/MM/YYYY HH:mm:ss",
1237
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1238
+ }
1239
+ }, v = {
1240
+ name: "it",
1241
+ months: [
1242
+ "gennaio",
1243
+ "febbraio",
1244
+ "marzo",
1245
+ "aprile",
1246
+ "maggio",
1247
+ "giugno",
1248
+ "luglio",
1249
+ "agosto",
1250
+ "settembre",
1251
+ "ottobre",
1252
+ "novembre",
1253
+ "dicembre"
1254
+ ],
1255
+ monthsShort: [
1256
+ "gen",
1257
+ "feb",
1258
+ "mar",
1259
+ "apr",
1260
+ "mag",
1261
+ "giu",
1262
+ "lug",
1263
+ "ago",
1264
+ "set",
1265
+ "ott",
1266
+ "nov",
1267
+ "dic"
1268
+ ],
1269
+ weekdays: [
1270
+ "domenica",
1271
+ "lunedì",
1272
+ "martedì",
1273
+ "mercoledì",
1274
+ "giovedì",
1275
+ "venerdì",
1276
+ "sabato"
1277
+ ],
1278
+ weekdaysShort: [
1279
+ "dom",
1280
+ "lun",
1281
+ "mar",
1282
+ "mer",
1283
+ "gio",
1284
+ "ven",
1285
+ "sab"
1286
+ ],
1287
+ weekdaysMin: [
1288
+ "do",
1289
+ "lu",
1290
+ "ma",
1291
+ "me",
1292
+ "gi",
1293
+ "ve",
1294
+ "sa"
1295
+ ],
1296
+ meridiem: {
1297
+ am: "AM",
1298
+ pm: "PM"
1299
+ },
1300
+ formats: {
1301
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1302
+ date: "DD/MM/YYYY",
1303
+ time: "HH:mm:ss",
1304
+ datetime: "DD/MM/YYYY HH:mm:ss",
1305
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1306
+ }
1307
+ }, y = {
1308
+ name: "pt",
1309
+ months: [
1310
+ "janeiro",
1311
+ "fevereiro",
1312
+ "março",
1313
+ "abril",
1314
+ "maio",
1315
+ "junho",
1316
+ "julho",
1317
+ "agosto",
1318
+ "setembro",
1319
+ "outubro",
1320
+ "novembro",
1321
+ "dezembro"
1322
+ ],
1323
+ monthsShort: [
1324
+ "jan",
1325
+ "fev",
1326
+ "mar",
1327
+ "abr",
1328
+ "mai",
1329
+ "jun",
1330
+ "jul",
1331
+ "ago",
1332
+ "set",
1333
+ "out",
1334
+ "nov",
1335
+ "dez"
1336
+ ],
1337
+ weekdays: [
1338
+ "domingo",
1339
+ "segunda",
1340
+ "terça",
1341
+ "quarta",
1342
+ "quinta",
1343
+ "sexta",
1344
+ "sábado"
1345
+ ],
1346
+ weekdaysShort: [
1347
+ "dom",
1348
+ "seg",
1349
+ "ter",
1350
+ "qua",
1351
+ "qui",
1352
+ "sex",
1353
+ "sab"
1354
+ ],
1355
+ weekdaysMin: [
1356
+ "do",
1357
+ "se",
1358
+ "te",
1359
+ "qu",
1360
+ "qu",
1361
+ "se",
1362
+ "sa"
1363
+ ],
1364
+ meridiem: {
1365
+ am: "AM",
1366
+ pm: "PM"
1367
+ },
1368
+ formats: {
1369
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1370
+ date: "DD/MM/YYYY",
1371
+ time: "HH:mm:ss",
1372
+ datetime: "DD/MM/YYYY HH:mm:ss",
1373
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1374
+ }
1375
+ }, b = {
1376
+ name: "pt-br",
1377
+ months: [
1378
+ "janeiro",
1379
+ "fevereiro",
1380
+ "março",
1381
+ "abril",
1382
+ "maio",
1383
+ "junho",
1384
+ "julho",
1385
+ "agosto",
1386
+ "setembro",
1387
+ "outubro",
1388
+ "novembro",
1389
+ "dezembro"
1390
+ ],
1391
+ monthsShort: [
1392
+ "jan",
1393
+ "fev",
1394
+ "mar",
1395
+ "abr",
1396
+ "mai",
1397
+ "jun",
1398
+ "jul",
1399
+ "ago",
1400
+ "set",
1401
+ "out",
1402
+ "nov",
1403
+ "dez"
1404
+ ],
1405
+ weekdays: [
1406
+ "domingo",
1407
+ "segunda-feira",
1408
+ "terça-feira",
1409
+ "quarta-feira",
1410
+ "quinta-feira",
1411
+ "sexta-feira",
1412
+ "sábado"
1413
+ ],
1414
+ weekdaysShort: [
1415
+ "dom",
1416
+ "seg",
1417
+ "ter",
1418
+ "qua",
1419
+ "qui",
1420
+ "sex",
1421
+ "sab"
1422
+ ],
1423
+ weekdaysMin: [
1424
+ "do",
1425
+ "se",
1426
+ "te",
1427
+ "qu",
1428
+ "qu",
1429
+ "se",
1430
+ "sa"
1431
+ ],
1432
+ meridiem: {
1433
+ am: "AM",
1434
+ pm: "PM"
1435
+ },
1436
+ formats: {
1437
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1438
+ date: "DD/MM/YYYY",
1439
+ time: "HH:mm:ss",
1440
+ datetime: "DD/MM/YYYY HH:mm:ss",
1441
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1442
+ }
1443
+ }, ee = {
1444
+ name: "ro",
1445
+ months: [
1446
+ "ianuarie",
1447
+ "februarie",
1448
+ "martie",
1449
+ "aprilie",
1450
+ "mai",
1451
+ "iunie",
1452
+ "iulie",
1453
+ "august",
1454
+ "septembrie",
1455
+ "octombrie",
1456
+ "noiembrie",
1457
+ "decembrie"
1458
+ ],
1459
+ monthsShort: [
1460
+ "ian.",
1461
+ "feb.",
1462
+ "mar.",
1463
+ "apr.",
1464
+ "mai",
1465
+ "iun.",
1466
+ "iul.",
1467
+ "aug.",
1468
+ "sep.",
1469
+ "oct.",
1470
+ "nov.",
1471
+ "dec."
1472
+ ],
1473
+ weekdays: [
1474
+ "duminică",
1475
+ "luni",
1476
+ "marți",
1477
+ "miercuri",
1478
+ "joi",
1479
+ "vineri",
1480
+ "sâmbătă"
1481
+ ],
1482
+ weekdaysShort: [
1483
+ "dum.",
1484
+ "lun.",
1485
+ "mar.",
1486
+ "mie.",
1487
+ "joi",
1488
+ "vin.",
1489
+ "sâm."
1490
+ ],
1491
+ weekdaysMin: [
1492
+ "du",
1493
+ "lu",
1494
+ "ma",
1495
+ "mi",
1496
+ "jo",
1497
+ "vi",
1498
+ "sâ"
1499
+ ],
1500
+ meridiem: {
1501
+ am: "AM",
1502
+ pm: "PM"
1503
+ },
1504
+ formats: {
1505
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1506
+ date: "DD.MM.YYYY",
1507
+ time: "HH:mm:ss",
1508
+ datetime: "DD.MM.YYYY HH:mm:ss",
1509
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1510
+ }
1511
+ }, x = {
1512
+ fr: _,
1513
+ it: v,
1514
+ pt: y,
1515
+ "pt-br": b,
1516
+ ro: ee
1517
+ }, S = {
1518
+ ru: {
1519
+ name: "ru",
1520
+ months: [
1521
+ "январь",
1522
+ "февраль",
1523
+ "март",
1524
+ "апрель",
1525
+ "май",
1526
+ "июнь",
1527
+ "июль",
1528
+ "август",
1529
+ "сентябрь",
1530
+ "октябрь",
1531
+ "ноябрь",
1532
+ "декабрь"
1533
+ ],
1534
+ monthsShort: [
1535
+ "янв.",
1536
+ "февр.",
1537
+ "март",
1538
+ "апр.",
1539
+ "май",
1540
+ "июнь",
1541
+ "июль",
1542
+ "авг.",
1543
+ "сент.",
1544
+ "окт.",
1545
+ "нояб.",
1546
+ "дек."
1547
+ ],
1548
+ weekdays: [
1549
+ "воскресенье",
1550
+ "понедельник",
1551
+ "вторник",
1552
+ "среда",
1553
+ "четверг",
1554
+ "пятница",
1555
+ "суббота"
1556
+ ],
1557
+ weekdaysShort: [
1558
+ "вс",
1559
+ "пн",
1560
+ "вт",
1561
+ "ср",
1562
+ "чт",
1563
+ "пт",
1564
+ "сб"
1565
+ ],
1566
+ weekdaysMin: [
1567
+ "вс",
1568
+ "пн",
1569
+ "вт",
1570
+ "ср",
1571
+ "чт",
1572
+ "пт",
1573
+ "сб"
1574
+ ],
1575
+ meridiem: {
1576
+ am: "AM",
1577
+ pm: "PM"
1578
+ },
1579
+ formats: {
1580
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1581
+ date: "DD.MM.YYYY",
1582
+ time: "HH:mm:ss",
1583
+ datetime: "DD.MM.YYYY HH:mm:ss",
1584
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1585
+ }
1586
+ },
1587
+ pl: {
1588
+ name: "pl",
1589
+ months: [
1590
+ "stycznia",
1591
+ "lutego",
1592
+ "marca",
1593
+ "kwietnia",
1594
+ "maja",
1595
+ "czerwca",
1596
+ "lipca",
1597
+ "sierpnia",
1598
+ "września",
1599
+ "października",
1600
+ "listopada",
1601
+ "grudnia"
1602
+ ],
1603
+ monthsShort: [
1604
+ "sty.",
1605
+ "lut.",
1606
+ "mar.",
1607
+ "kwi.",
1608
+ "maj.",
1609
+ "cze.",
1610
+ "lip.",
1611
+ "sie.",
1612
+ "wrz.",
1613
+ "paź.",
1614
+ "lis.",
1615
+ "gru."
1616
+ ],
1617
+ weekdays: [
1618
+ "niedziela",
1619
+ "poniedziałek",
1620
+ "wtorek",
1621
+ "środa",
1622
+ "czwartek",
1623
+ "piątek",
1624
+ "sobota"
1625
+ ],
1626
+ weekdaysShort: [
1627
+ "Nd.",
1628
+ "Pn.",
1629
+ "Wt.",
1630
+ "Śr.",
1631
+ "Cz.",
1632
+ "Pt.",
1633
+ "So."
1634
+ ],
1635
+ weekdaysMin: [
1636
+ "Nd",
1637
+ "Pn",
1638
+ "Wt",
1639
+ "Śr",
1640
+ "Cz",
1641
+ "Pt",
1642
+ "So"
1643
+ ],
1644
+ meridiem: {
1645
+ am: "AM",
1646
+ pm: "PM"
1647
+ },
1648
+ formats: {
1649
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1650
+ date: "DD.MM.YYYY",
1651
+ time: "HH:mm:ss",
1652
+ datetime: "DD.MM.YYYY HH:mm:ss",
1653
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1654
+ }
1655
+ },
1656
+ cs: {
1657
+ name: "cs",
1658
+ months: [
1659
+ "ledna",
1660
+ "února",
1661
+ "března",
1662
+ "dubna",
1663
+ "května",
1664
+ "iunie",
1665
+ "iulie",
1666
+ "srpna",
1667
+ "září",
1668
+ "října",
1669
+ "listopadu",
1670
+ "prosince"
1671
+ ],
1672
+ monthsShort: [
1673
+ "led",
1674
+ "úno",
1675
+ "bře",
1676
+ "dub",
1677
+ "kvě",
1678
+ "čer",
1679
+ "čvc",
1680
+ "srp",
1681
+ "zář",
1682
+ "říj",
1683
+ "lis",
1684
+ "pro"
1685
+ ],
1686
+ weekdays: [
1687
+ "neděle",
1688
+ "pondělí",
1689
+ "úterý",
1690
+ "středa",
1691
+ "čtvrtek",
1692
+ "pátek",
1693
+ "sobota"
1694
+ ],
1695
+ weekdaysShort: [
1696
+ "ne",
1697
+ "po",
1698
+ "út",
1699
+ "st",
1700
+ "čt",
1701
+ "pá",
1702
+ "so"
1703
+ ],
1704
+ weekdaysMin: [
1705
+ "ne",
1706
+ "po",
1707
+ "út",
1708
+ "st",
1709
+ "čt",
1710
+ "pá",
1711
+ "so"
1712
+ ],
1713
+ meridiem: {
1714
+ am: "AM",
1715
+ pm: "PM"
1716
+ },
1717
+ formats: {
1718
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1719
+ date: "DD.MM.YYYY",
1720
+ time: "HH:mm:ss",
1721
+ datetime: "DD.MM.YYYY HH:mm:ss",
1722
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1723
+ }
1724
+ },
1725
+ sk: {
1726
+ name: "sk",
1727
+ months: [
1728
+ "január",
1729
+ "február",
1730
+ "март",
1731
+ "апрель",
1732
+ "май",
1733
+ "июнь",
1734
+ "июль",
1735
+ "август",
1736
+ "сентябрь",
1737
+ "октябрь",
1738
+ "ноябрь",
1739
+ "декабрь"
1740
+ ],
1741
+ monthsShort: [
1742
+ "jan",
1743
+ "feb",
1744
+ "mar",
1745
+ "apr",
1746
+ "maj",
1747
+ "jún",
1748
+ "júl",
1749
+ "aug",
1750
+ "sep",
1751
+ "okt",
1752
+ "nov",
1753
+ "dec"
1754
+ ],
1755
+ weekdays: [
1756
+ "nedeľa",
1757
+ "pondelok",
1758
+ "utorok",
1759
+ "streda",
1760
+ "štvrtok",
1761
+ "piatok",
1762
+ "sobota"
1763
+ ],
1764
+ weekdaysShort: [
1765
+ "ned",
1766
+ "pon",
1767
+ "uto",
1768
+ "str",
1769
+ "štv",
1770
+ "pia",
1771
+ "sob"
1772
+ ],
1773
+ weekdaysMin: [
1774
+ "ne",
1775
+ "po",
1776
+ "ut",
1777
+ "st",
1778
+ "št",
1779
+ "pi",
1780
+ "so"
1781
+ ],
1782
+ meridiem: {
1783
+ am: "AM",
1784
+ pm: "PM"
1785
+ },
1786
+ formats: {
1787
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1788
+ date: "DD.MM.YYYY",
1789
+ time: "HH:mm:ss",
1790
+ datetime: "DD.MM.YYYY HH:mm:ss",
1791
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1792
+ }
1793
+ }
1794
+ }, C = {
1795
+ sv: {
1796
+ name: "sv",
1797
+ months: [
1798
+ "januari",
1799
+ "februari",
1800
+ "mars",
1801
+ "april",
1802
+ "maj",
1803
+ "juni",
1804
+ "juli",
1805
+ "augusti",
1806
+ "september",
1807
+ "oktober",
1808
+ "november",
1809
+ "december"
1810
+ ],
1811
+ monthsShort: [
1812
+ "jan.",
1813
+ "feb.",
1814
+ "mar.",
1815
+ "apr.",
1816
+ "maj",
1817
+ "juni",
1818
+ "juli",
1819
+ "aug.",
1820
+ "sep.",
1821
+ "okt.",
1822
+ "nov.",
1823
+ "dec."
1824
+ ],
1825
+ weekdays: [
1826
+ "söndag",
1827
+ "måndag",
1828
+ "tisdag",
1829
+ "onsdag",
1830
+ "torsdag",
1831
+ "fredag",
1832
+ "lördag"
1833
+ ],
1834
+ weekdaysShort: [
1835
+ "sön",
1836
+ "mån",
1837
+ "tis",
1838
+ "ons",
1839
+ "tor",
1840
+ "fre",
1841
+ "lör"
1842
+ ],
1843
+ weekdaysMin: [
1844
+ "sö",
1845
+ "må",
1846
+ "ti",
1847
+ "on",
1848
+ "to",
1849
+ "fr",
1850
+ "lö"
1851
+ ],
1852
+ meridiem: {
1853
+ am: "AM",
1854
+ pm: "PM"
1855
+ },
1856
+ formats: {
1857
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1858
+ date: "YYYY-MM-DD",
1859
+ time: "HH:mm:ss",
1860
+ datetime: "YYYY-MM-DD HH:mm:ss",
1861
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1862
+ }
1863
+ },
1864
+ nb: {
1865
+ name: "nb",
1866
+ months: [
1867
+ "januar",
1868
+ "februar",
1869
+ "mars",
1870
+ "april",
1871
+ "mai",
1872
+ "juni",
1873
+ "juli",
1874
+ "august",
1875
+ "september",
1876
+ "oktober",
1877
+ "november",
1878
+ "desember"
1879
+ ],
1880
+ monthsShort: [
1881
+ "jan.",
1882
+ "feb.",
1883
+ "mar.",
1884
+ "apr.",
1885
+ "mai",
1886
+ "juni",
1887
+ "juli",
1888
+ "aug.",
1889
+ "sep.",
1890
+ "okt.",
1891
+ "nov.",
1892
+ "des."
1893
+ ],
1894
+ weekdays: [
1895
+ "søndag",
1896
+ "mandag",
1897
+ "tirsdag",
1898
+ "onsdag",
1899
+ "torsdag",
1900
+ "fredag",
1901
+ "lørdag"
1902
+ ],
1903
+ weekdaysShort: [
1904
+ "søn",
1905
+ "man",
1906
+ "tir",
1907
+ "ons",
1908
+ "tor",
1909
+ "fre",
1910
+ "lør"
1911
+ ],
1912
+ weekdaysMin: [
1913
+ "sø",
1914
+ "ma",
1915
+ "ti",
1916
+ "on",
1917
+ "to",
1918
+ "fr",
1919
+ "lø"
1920
+ ],
1921
+ meridiem: {
1922
+ am: "AM",
1923
+ pm: "PM"
1924
+ },
1925
+ formats: {
1926
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1927
+ date: "DD.MM.YYYY",
1928
+ time: "HH:mm:ss",
1929
+ datetime: "DD.MM.YYYY HH:mm:ss",
1930
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
1931
+ }
1932
+ },
1933
+ da: {
1934
+ name: "da",
1935
+ months: [
1936
+ "januar",
1937
+ "februar",
1938
+ "marts",
1939
+ "april",
1940
+ "maj",
1941
+ "juni",
1942
+ "juli",
1943
+ "august",
1944
+ "september",
1945
+ "oktober",
1946
+ "november",
1947
+ "december"
1948
+ ],
1949
+ monthsShort: [
1950
+ "jan",
1951
+ "feb",
1952
+ "mar",
1953
+ "apr",
1954
+ "maj",
1955
+ "jun",
1956
+ "jul",
1957
+ "aug",
1958
+ "sep",
1959
+ "okt",
1960
+ "nov",
1961
+ "dec"
1962
+ ],
1963
+ weekdays: [
1964
+ "søndag",
1965
+ "mandag",
1966
+ "tirsdag",
1967
+ "onsdag",
1968
+ "torsdag",
1969
+ "fredag",
1970
+ "lørdag"
1971
+ ],
1972
+ weekdaysShort: [
1973
+ "søn",
1974
+ "man",
1975
+ "tir",
1976
+ "ons",
1977
+ "tor",
1978
+ "fre",
1979
+ "lør"
1980
+ ],
1981
+ weekdaysMin: [
1982
+ "sø",
1983
+ "ma",
1984
+ "ti",
1985
+ "on",
1986
+ "to",
1987
+ "fr",
1988
+ "lø"
1989
+ ],
1990
+ meridiem: {
1991
+ am: "AM",
1992
+ pm: "PM"
1993
+ },
1994
+ formats: {
1995
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
1996
+ date: "DD.MM.YYYY",
1997
+ time: "HH:mm:ss",
1998
+ datetime: "DD.MM.YYYY HH:mm:ss",
1999
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2000
+ }
2001
+ },
2002
+ fi: {
2003
+ name: "fi",
2004
+ months: [
2005
+ "tammikuuta",
2006
+ "helmikuuta",
2007
+ "maaliskuuta",
2008
+ "huhtikuuta",
2009
+ "toukokuuta",
2010
+ "kesäkuuta",
2011
+ "heinäkuuta",
2012
+ "elokuuta",
2013
+ "syyskuuta",
2014
+ "lokakuuta",
2015
+ "marraskuuta",
2016
+ "joulukuuta"
2017
+ ],
2018
+ monthsShort: [
2019
+ "tam.",
2020
+ "hel.",
2021
+ "maa.",
2022
+ "huh.",
2023
+ "tou.",
2024
+ "kes.",
2025
+ "hei.",
2026
+ "elo.",
2027
+ "syy.",
2028
+ "lok.",
2029
+ "mar.",
2030
+ "jou."
2031
+ ],
2032
+ weekdays: [
2033
+ "sunnuntai",
2034
+ "maanantai",
2035
+ "tiistai",
2036
+ "keskiviikko",
2037
+ "torstai",
2038
+ "perjantai",
2039
+ "lauantai"
2040
+ ],
2041
+ weekdaysShort: [
2042
+ "su.",
2043
+ "ma.",
2044
+ "ti.",
2045
+ "ke.",
2046
+ "to.",
2047
+ "pe.",
2048
+ "la."
2049
+ ],
2050
+ weekdaysMin: [
2051
+ "su",
2052
+ "ma",
2053
+ "ti",
2054
+ "ke",
2055
+ "to",
2056
+ "pe",
2057
+ "la"
2058
+ ],
2059
+ meridiem: {
2060
+ am: "AM",
2061
+ pm: "PM"
2062
+ },
2063
+ formats: {
2064
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2065
+ date: "DD.MM.YYYY",
2066
+ time: "HH:mm:ss",
2067
+ datetime: "DD.MM.YYYY HH:mm:ss",
2068
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2069
+ }
2070
+ }
2071
+ }, w = {
2072
+ name: "ja",
2073
+ months: [
2074
+ "1月",
2075
+ "2月",
2076
+ "3月",
2077
+ "4月",
2078
+ "5月",
2079
+ "6月",
2080
+ "7月",
2081
+ "8月",
2082
+ "9月",
2083
+ "10月",
2084
+ "11月",
2085
+ "12月"
2086
+ ],
2087
+ monthsShort: [
2088
+ "1月",
2089
+ "2月",
2090
+ "3月",
2091
+ "4月",
2092
+ "5月",
2093
+ "6月",
2094
+ "7月",
2095
+ "8月",
2096
+ "9月",
2097
+ "10月",
2098
+ "11月",
2099
+ "12月"
2100
+ ],
2101
+ weekdays: [
2102
+ "日曜日",
2103
+ "月曜日",
2104
+ "火曜日",
2105
+ "水曜日",
2106
+ "木曜日",
2107
+ "金曜日",
2108
+ "土曜日"
2109
+ ],
2110
+ weekdaysShort: [
2111
+ "日",
2112
+ "月",
2113
+ "火",
2114
+ "水",
2115
+ "木",
2116
+ "金",
2117
+ "土"
2118
+ ],
2119
+ weekdaysMin: [
2120
+ "日",
2121
+ "月",
2122
+ "火",
2123
+ "水",
2124
+ "木",
2125
+ "金",
2126
+ "土"
2127
+ ],
2128
+ meridiem: {
2129
+ am: "午前",
2130
+ pm: "午後"
2131
+ },
2132
+ formats: {
2133
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2134
+ date: "YYYY年MM月DD日",
2135
+ time: "HH:mm:ss",
2136
+ datetime: "YYYY年MM月DD日 HH:mm:ss",
2137
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2138
+ }
2139
+ }, T = {
2140
+ name: "zh-cn",
2141
+ months: [
2142
+ "1月",
2143
+ "2月",
2144
+ "3月",
2145
+ "4月",
2146
+ "5月",
2147
+ "6月",
2148
+ "7月",
2149
+ "8月",
2150
+ "9月",
2151
+ "10月",
2152
+ "11月",
2153
+ "12月"
2154
+ ],
2155
+ monthsShort: [
2156
+ "1月",
2157
+ "2月",
2158
+ "3月",
2159
+ "4月",
2160
+ "5月",
2161
+ "6月",
2162
+ "7月",
2163
+ "8月",
2164
+ "9月",
2165
+ "10月",
2166
+ "11月",
2167
+ "12月"
2168
+ ],
2169
+ weekdays: [
2170
+ "星期日",
2171
+ "星期一",
2172
+ "星期二",
2173
+ "星期三",
2174
+ "星期四",
2175
+ "星期五",
2176
+ "星期六"
2177
+ ],
2178
+ weekdaysShort: [
2179
+ "周日",
2180
+ "周一",
2181
+ "周二",
2182
+ "周三",
2183
+ "周四",
2184
+ "周五",
2185
+ "周六"
2186
+ ],
2187
+ weekdaysMin: [
2188
+ "日",
2189
+ "一",
2190
+ "二",
2191
+ "三",
2192
+ "四",
2193
+ "五",
2194
+ "六"
2195
+ ],
2196
+ meridiem: {
2197
+ am: "上午",
2198
+ pm: "下午"
2199
+ },
2200
+ formats: {
2201
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2202
+ date: "YYYY-MM-DD",
2203
+ time: "HH:mm:ss",
2204
+ datetime: "YYYY-MM-DD HH:mm:ss",
2205
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2206
+ }
2207
+ }, E = {
2208
+ name: "zh-tw",
2209
+ months: [
2210
+ "1月",
2211
+ "2月",
2212
+ "3月",
2213
+ "4月",
2214
+ "5月",
2215
+ "6月",
2216
+ "7月",
2217
+ "8月",
2218
+ "9月",
2219
+ "10月",
2220
+ "11月",
2221
+ "12月"
2222
+ ],
2223
+ monthsShort: [
2224
+ "1月",
2225
+ "2月",
2226
+ "3月",
2227
+ "4月",
2228
+ "5月",
2229
+ "6月",
2230
+ "7月",
2231
+ "8月",
2232
+ "9月",
2233
+ "10月",
2234
+ "11月",
2235
+ "12月"
2236
+ ],
2237
+ weekdays: [
2238
+ "星期日",
2239
+ "星期一",
2240
+ "星期二",
2241
+ "星期三",
2242
+ "星期四",
2243
+ "星期五",
2244
+ "星期六"
2245
+ ],
2246
+ weekdaysShort: [
2247
+ "週日",
2248
+ "週一",
2249
+ "週二",
2250
+ "週三",
2251
+ "週四",
2252
+ "週五",
2253
+ "週六"
2254
+ ],
2255
+ weekdaysMin: [
2256
+ "日",
2257
+ "一",
2258
+ "二",
2259
+ "三",
2260
+ "四",
2261
+ "五",
2262
+ "六"
2263
+ ],
2264
+ meridiem: {
2265
+ am: "上午",
2266
+ pm: "下午"
2267
+ },
2268
+ formats: {
2269
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2270
+ date: "YYYY-MM-DD",
2271
+ time: "HH:mm:ss",
2272
+ datetime: "YYYY-MM-DD HH:mm:ss",
2273
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2274
+ }
2275
+ }, D = {
2276
+ name: "ko",
2277
+ months: [
2278
+ "1월",
2279
+ "2월",
2280
+ "3월",
2281
+ "4월",
2282
+ "5월",
2283
+ "6월",
2284
+ "7월",
2285
+ "8월",
2286
+ "9월",
2287
+ "10월",
2288
+ "11월",
2289
+ "12월"
2290
+ ],
2291
+ monthsShort: [
2292
+ "1월",
2293
+ "2월",
2294
+ "3월",
2295
+ "4월",
2296
+ "5월",
2297
+ "6월",
2298
+ "7월",
2299
+ "8월",
2300
+ "9월",
2301
+ "10월",
2302
+ "11월",
2303
+ "12월"
2304
+ ],
2305
+ weekdays: [
2306
+ "일요일",
2307
+ "월요일",
2308
+ "화요일",
2309
+ "수요일",
2310
+ "목요일",
2311
+ "금요일",
2312
+ "토요일"
2313
+ ],
2314
+ weekdaysShort: [
2315
+ "일",
2316
+ "월",
2317
+ "화",
2318
+ "수",
2319
+ "목",
2320
+ "금",
2321
+ "토"
2322
+ ],
2323
+ weekdaysMin: [
2324
+ "일",
2325
+ "월",
2326
+ "화",
2327
+ "수",
2328
+ "목",
2329
+ "금",
2330
+ "토"
2331
+ ],
2332
+ meridiem: {
2333
+ am: "오전",
2334
+ pm: "오후"
2335
+ },
2336
+ formats: {
2337
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2338
+ date: "YYYY-MM-DD",
2339
+ time: "HH:mm:ss",
2340
+ datetime: "YYYY-MM-DD HH:mm:ss",
2341
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2342
+ }
2343
+ }, O = {
2344
+ name: "th",
2345
+ months: [
2346
+ "มกราคม",
2347
+ "กุมภาพันธ์",
2348
+ "มีนาคม",
2349
+ "เมษายน",
2350
+ "พฤษภาคม",
2351
+ "มิถุนายน",
2352
+ "กรกฎาคม",
2353
+ "สิงหาคม",
2354
+ "กันยายน",
2355
+ "ตุลาคม",
2356
+ "พฤศจิกายน",
2357
+ "ธันวาคม"
2358
+ ],
2359
+ monthsShort: [
2360
+ "ม.ค.",
2361
+ "ก.พ.",
2362
+ "มี.ค.",
2363
+ "เม.ย.",
2364
+ "พ.ค.",
2365
+ "มิ.ย.",
2366
+ "ก.ค.",
2367
+ "ส.ค.",
2368
+ "ก.ย.",
2369
+ "ต.ค.",
2370
+ "พ.ย.",
2371
+ "ธ.ค."
2372
+ ],
2373
+ weekdays: [
2374
+ "อาทิตย์",
2375
+ "จันทร์",
2376
+ "อังคาร",
2377
+ "พุธ",
2378
+ "พฤหัสบดี",
2379
+ "ศุกร์",
2380
+ "เสาร์"
2381
+ ],
2382
+ weekdaysShort: [
2383
+ "อา.",
2384
+ "จ.",
2385
+ "อ.",
2386
+ "พ.",
2387
+ "พฤ.",
2388
+ "ศ.",
2389
+ "ส."
2390
+ ],
2391
+ weekdaysMin: [
2392
+ "อา",
2393
+ "จ",
2394
+ "อ",
2395
+ "พ",
2396
+ "พฤ",
2397
+ "ศ",
2398
+ "ส"
2399
+ ],
2400
+ meridiem: {
2401
+ am: "AM",
2402
+ pm: "PM"
2403
+ },
2404
+ formats: {
2405
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2406
+ date: "DD/MM/YYYY",
2407
+ time: "HH:mm:ss",
2408
+ datetime: "DD/MM/YYYY HH:mm:ss",
2409
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2410
+ }
2411
+ }, k = {
2412
+ name: "vi",
2413
+ months: [
2414
+ "tháng 1",
2415
+ "tháng 2",
2416
+ "tháng 3",
2417
+ "tháng 4",
2418
+ "tháng 5",
2419
+ "tháng 6",
2420
+ "tháng 7",
2421
+ "tháng 8",
2422
+ "tháng 9",
2423
+ "tháng 10",
2424
+ "tháng 11",
2425
+ "tháng 12"
2426
+ ],
2427
+ monthsShort: [
2428
+ "Th01",
2429
+ "Th02",
2430
+ "Th03",
2431
+ "Th04",
2432
+ "Th05",
2433
+ "Th06",
2434
+ "Th07",
2435
+ "Th08",
2436
+ "Th09",
2437
+ "Th10",
2438
+ "Th11",
2439
+ "Th12"
2440
+ ],
2441
+ weekdays: [
2442
+ "Chủ nhật",
2443
+ "Thứ hai",
2444
+ "Thứ ba",
2445
+ "Thứ tư",
2446
+ "Thứ năm",
2447
+ "Thứ sáu",
2448
+ "Thứ bảy"
2449
+ ],
2450
+ weekdaysShort: [
2451
+ "CN",
2452
+ "Hai",
2453
+ "Ba",
2454
+ "Tư",
2455
+ "Năm",
2456
+ "Sáu",
2457
+ "Bảy"
2458
+ ],
2459
+ weekdaysMin: [
2460
+ "CN",
2461
+ "T2",
2462
+ "T3",
2463
+ "T4",
2464
+ "T5",
2465
+ "T6",
2466
+ "T7"
2467
+ ],
2468
+ meridiem: {
2469
+ am: "AM",
2470
+ pm: "PM"
2471
+ },
2472
+ formats: {
2473
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2474
+ date: "DD/MM/YYYY",
2475
+ time: "HH:mm:ss",
2476
+ datetime: "DD/MM/YYYY HH:mm:ss",
2477
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2478
+ }
2479
+ }, A = {
2480
+ name: "id",
2481
+ months: [
2482
+ "Januari",
2483
+ "Februari",
2484
+ "Maret",
2485
+ "April",
2486
+ "Mei",
2487
+ "Juni",
2488
+ "Juli",
2489
+ "Agustus",
2490
+ "September",
2491
+ "Oktober",
2492
+ "November",
2493
+ "Desember"
2494
+ ],
2495
+ monthsShort: [
2496
+ "Jan",
2497
+ "Feb",
2498
+ "Mar",
2499
+ "Apr",
2500
+ "Mei",
2501
+ "Jun",
2502
+ "Jul",
2503
+ "Agu",
2504
+ "Sep",
2505
+ "Okt",
2506
+ "Nov",
2507
+ "Des"
2508
+ ],
2509
+ weekdays: [
2510
+ "Minggu",
2511
+ "Senin",
2512
+ "Selasa",
2513
+ "Rabu",
2514
+ "Kamis",
2515
+ "Jumat",
2516
+ "Sabtu"
2517
+ ],
2518
+ weekdaysShort: [
2519
+ "Min",
2520
+ "Sen",
2521
+ "Sel",
2522
+ "Rab",
2523
+ "Kam",
2524
+ "Jum",
2525
+ "Sab"
2526
+ ],
2527
+ weekdaysMin: [
2528
+ "Mg",
2529
+ "Sn",
2530
+ "Sl",
2531
+ "Rb",
2532
+ "Km",
2533
+ "Jm",
2534
+ "Sb"
2535
+ ],
2536
+ meridiem: {
2537
+ am: "AM",
2538
+ pm: "PM"
2539
+ },
2540
+ formats: {
2541
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2542
+ date: "DD/MM/YYYY",
2543
+ time: "HH:mm:ss",
2544
+ datetime: "DD/MM/YYYY HH:mm:ss",
2545
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2546
+ }
2547
+ }, j = {
2548
+ ja: w,
2549
+ "zh-cn": T,
2550
+ "zh-tw": E,
2551
+ ko: D,
2552
+ th: O,
2553
+ vi: k,
2554
+ id: A
2555
+ }, M = {
2556
+ de: {
2557
+ name: "de",
2558
+ months: [
2559
+ "Januar",
2560
+ "Februar",
2561
+ "März",
2562
+ "April",
2563
+ "Mai",
2564
+ "Juni",
2565
+ "Juli",
2566
+ "August",
2567
+ "September",
2568
+ "Oktober",
2569
+ "November",
2570
+ "Dezember"
2571
+ ],
2572
+ monthsShort: [
2573
+ "Jan.",
2574
+ "Feb.",
2575
+ "Mär.",
2576
+ "Apr.",
2577
+ "Mai",
2578
+ "Jun.",
2579
+ "Jul.",
2580
+ "Aug.",
2581
+ "Sep.",
2582
+ "Okt.",
2583
+ "Nov.",
2584
+ "Dez."
2585
+ ],
2586
+ weekdays: [
2587
+ "Sonntag",
2588
+ "Montag",
2589
+ "Dienstag",
2590
+ "Mittwoch",
2591
+ "Donnerstag",
2592
+ "Freitag",
2593
+ "Samstag"
2594
+ ],
2595
+ weekdaysShort: [
2596
+ "So.",
2597
+ "Mo.",
2598
+ "Di.",
2599
+ "Mi.",
2600
+ "Do.",
2601
+ "Fr.",
2602
+ "Sa."
2603
+ ],
2604
+ weekdaysMin: [
2605
+ "So",
2606
+ "Mo",
2607
+ "Di",
2608
+ "Mi",
2609
+ "Do",
2610
+ "Fr",
2611
+ "Sa"
2612
+ ],
2613
+ meridiem: {
2614
+ am: "AM",
2615
+ pm: "PM"
2616
+ },
2617
+ formats: {
2618
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2619
+ date: "DD.MM.YYYY",
2620
+ time: "HH:mm:ss",
2621
+ datetime: "DD.MM.YYYY HH:mm:ss",
2622
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2623
+ }
2624
+ },
2625
+ nl: {
2626
+ name: "nl",
2627
+ months: [
2628
+ "januari",
2629
+ "februari",
2630
+ "maart",
2631
+ "april",
2632
+ "mei",
2633
+ "juni",
2634
+ "juli",
2635
+ "augustus",
2636
+ "september",
2637
+ "oktober",
2638
+ "november",
2639
+ "december"
2640
+ ],
2641
+ monthsShort: [
2642
+ "jan.",
2643
+ "feb.",
2644
+ "mrt.",
2645
+ "apr.",
2646
+ "mei",
2647
+ "jun.",
2648
+ "jul.",
2649
+ "aug.",
2650
+ "sep.",
2651
+ "okt.",
2652
+ "nov.",
2653
+ "dec."
2654
+ ],
2655
+ weekdays: [
2656
+ "zondag",
2657
+ "maandag",
2658
+ "dinsdag",
2659
+ "woensdag",
2660
+ "donderdag",
2661
+ "vrijdag",
2662
+ "zaterdag"
2663
+ ],
2664
+ weekdaysShort: [
2665
+ "zo.",
2666
+ "ma.",
2667
+ "di.",
2668
+ "wo.",
2669
+ "do.",
2670
+ "vr.",
2671
+ "za."
2672
+ ],
2673
+ weekdaysMin: [
2674
+ "zo",
2675
+ "ma",
2676
+ "di",
2677
+ "wo",
2678
+ "do",
2679
+ "vr",
2680
+ "za"
2681
+ ],
2682
+ meridiem: {
2683
+ am: "AM",
2684
+ pm: "PM"
2685
+ },
2686
+ formats: {
2687
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2688
+ date: "DD-MM-YYYY",
2689
+ time: "HH:mm:ss",
2690
+ datetime: "DD-MM-YYYY HH:mm:ss",
2691
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2692
+ }
2693
+ },
2694
+ el: {
2695
+ name: "el",
2696
+ months: [
2697
+ "Ιανουάριος",
2698
+ "Φεβρουάριος",
2699
+ "Μάρτιος",
2700
+ "Απρίλιος",
2701
+ "Μάιος",
2702
+ "Ιούνιος",
2703
+ "Ιούλιος",
2704
+ "Αύγουστος",
2705
+ "Σεπτέμβριος",
2706
+ "Οκτώβριος",
2707
+ "Νοέμβριος",
2708
+ "Δεκέμβριος"
2709
+ ],
2710
+ monthsShort: [
2711
+ "Ιαν",
2712
+ "Φεβ",
2713
+ "Μάρ",
2714
+ "Απρ",
2715
+ "Μάι",
2716
+ "Ιού",
2717
+ "Ιού",
2718
+ "Αύγ",
2719
+ "Σεπ",
2720
+ "Οκτ",
2721
+ "Νοέ",
2722
+ "Δεκ"
2723
+ ],
2724
+ weekdays: [
2725
+ "Κυριακή",
2726
+ "Δευτέρα",
2727
+ "Τρίτη",
2728
+ "Τετάρτη",
2729
+ "Πέμπτη",
2730
+ "Παρασκευή",
2731
+ "Σάββατο"
2732
+ ],
2733
+ weekdaysShort: [
2734
+ "Κυρ",
2735
+ "Δευ",
2736
+ "Τρί",
2737
+ "Τετ",
2738
+ "Πέμ",
2739
+ "Παρ",
2740
+ "Σάβ"
2741
+ ],
2742
+ weekdaysMin: [
2743
+ "Κ",
2744
+ "Δ",
2745
+ "Τ",
2746
+ "Τ",
2747
+ "Π",
2748
+ "Π",
2749
+ "Σ"
2750
+ ],
2751
+ meridiem: {
2752
+ am: "AM",
2753
+ pm: "PM"
2754
+ },
2755
+ formats: {
2756
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2757
+ date: "DD/MM/YYYY",
2758
+ time: "HH:mm:ss",
2759
+ datetime: "DD/MM/YYYY HH:mm:ss",
2760
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2761
+ }
2762
+ },
2763
+ hu: {
2764
+ name: "hu",
2765
+ months: [
2766
+ "január",
2767
+ "február",
2768
+ "március",
2769
+ "április",
2770
+ "május",
2771
+ "június",
2772
+ "július",
2773
+ "augusztus",
2774
+ "szeptember",
2775
+ "október",
2776
+ "november",
2777
+ "december"
2778
+ ],
2779
+ monthsShort: [
2780
+ "jan.",
2781
+ "feb.",
2782
+ "már.",
2783
+ "ápr.",
2784
+ "máj.",
2785
+ "jún.",
2786
+ "júl.",
2787
+ "aug.",
2788
+ "szep.",
2789
+ "okt.",
2790
+ "nov.",
2791
+ "dec."
2792
+ ],
2793
+ weekdays: [
2794
+ "vasárnap",
2795
+ "hétfő",
2796
+ "kedd",
2797
+ "szerda",
2798
+ "csütörtök",
2799
+ "péntek",
2800
+ "szombat"
2801
+ ],
2802
+ weekdaysShort: [
2803
+ "V",
2804
+ "H",
2805
+ "K",
2806
+ "Sz",
2807
+ "Cs",
2808
+ "P",
2809
+ "Szo"
2810
+ ],
2811
+ weekdaysMin: [
2812
+ "V",
2813
+ "H",
2814
+ "K",
2815
+ "Sz",
2816
+ "Cs",
2817
+ "P",
2818
+ "Szo"
2819
+ ],
2820
+ meridiem: {
2821
+ am: "AM",
2822
+ pm: "PM"
2823
+ },
2824
+ formats: {
2825
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2826
+ date: "YYYY.MM.DD.",
2827
+ time: "HH:mm:ss",
2828
+ datetime: "YYYY.MM.DD. HH:mm:ss",
2829
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2830
+ }
2831
+ },
2832
+ eu: {
2833
+ name: "eu",
2834
+ months: [
2835
+ "urtarrila",
2836
+ "otsaila",
2837
+ "martxoa",
2838
+ "apirila",
2839
+ "maiatza",
2840
+ "ekaina",
2841
+ "uztaila",
2842
+ "abuztua",
2843
+ "iraila",
2844
+ "urria",
2845
+ "azaroa",
2846
+ "abendua"
2847
+ ],
2848
+ monthsShort: [
2849
+ "urt.",
2850
+ "ots.",
2851
+ "mar.",
2852
+ "api.",
2853
+ "mai.",
2854
+ "eka.",
2855
+ "uzt.",
2856
+ "abu.",
2857
+ "ira.",
2858
+ "urr.",
2859
+ "aza.",
2860
+ "abe."
2861
+ ],
2862
+ weekdays: [
2863
+ "igandea",
2864
+ "astelehena",
2865
+ "asteartea",
2866
+ "asteazkena",
2867
+ "osteguna",
2868
+ "ostirala",
2869
+ "larunbata"
2870
+ ],
2871
+ weekdaysShort: [
2872
+ "ig.",
2873
+ "al.",
2874
+ "ar.",
2875
+ "az.",
2876
+ "og.",
2877
+ "or.",
2878
+ "lr."
2879
+ ],
2880
+ weekdaysMin: [
2881
+ "ig",
2882
+ "al",
2883
+ "ar",
2884
+ "az",
2885
+ "og",
2886
+ "or",
2887
+ "lr"
2888
+ ],
2889
+ meridiem: {
2890
+ am: "AM",
2891
+ pm: "PM"
2892
+ },
2893
+ formats: {
2894
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2895
+ date: "YYYY.MM.DD",
2896
+ time: "HH:mm:ss",
2897
+ datetime: "YYYY.MM.DD HH:mm:ss",
2898
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2899
+ }
2900
+ },
2901
+ ca: {
2902
+ name: "ca",
2903
+ months: [
2904
+ "gener",
2905
+ "febrer",
2906
+ "març",
2907
+ "abril",
2908
+ "maig",
2909
+ "juny",
2910
+ "juliol",
2911
+ "agost",
2912
+ "setembre",
2913
+ "octubre",
2914
+ "novembre",
2915
+ "desembre"
2916
+ ],
2917
+ monthsShort: [
2918
+ "gen",
2919
+ "feb",
2920
+ "mar",
2921
+ "abr",
2922
+ "mai",
2923
+ "jun",
2924
+ "jul",
2925
+ "ago",
2926
+ "set",
2927
+ "oct",
2928
+ "nov",
2929
+ "des"
2930
+ ],
2931
+ weekdays: [
2932
+ "diumenge",
2933
+ "dilluns",
2934
+ "dimarts",
2935
+ "dimecres",
2936
+ "dijous",
2937
+ "divendres",
2938
+ "dissabte"
2939
+ ],
2940
+ weekdaysShort: [
2941
+ "diu",
2942
+ "dil",
2943
+ "dit",
2944
+ "dic",
2945
+ "dij",
2946
+ "div",
2947
+ "dis"
2948
+ ],
2949
+ weekdaysMin: [
2950
+ "du",
2951
+ "dl",
2952
+ "dt",
2953
+ "dc",
2954
+ "dj",
2955
+ "dv",
2956
+ "ds"
2957
+ ],
2958
+ meridiem: {
2959
+ am: "AM",
2960
+ pm: "PM"
2961
+ },
2962
+ formats: {
2963
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
2964
+ date: "DD/MM/YYYY",
2965
+ time: "HH:mm:ss",
2966
+ datetime: "DD/MM/YYYY HH:mm:ss",
2967
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
2968
+ }
2969
+ },
2970
+ tr: {
2971
+ name: "tr",
2972
+ months: [
2973
+ "Ocak",
2974
+ "Şubat",
2975
+ "Mart",
2976
+ "Nisan",
2977
+ "Mayıs",
2978
+ "Haziran",
2979
+ "Temmuz",
2980
+ "Ağustos",
2981
+ "Eylül",
2982
+ "Ekim",
2983
+ "Kasım",
2984
+ "Aralık"
2985
+ ],
2986
+ monthsShort: [
2987
+ "Oca",
2988
+ "Şub",
2989
+ "Mar",
2990
+ "Nis",
2991
+ "May",
2992
+ "Haz",
2993
+ "Tem",
2994
+ "Ağu",
2995
+ "Eyl",
2996
+ "Eki",
2997
+ "Kas",
2998
+ "Ara"
2999
+ ],
3000
+ weekdays: [
3001
+ "Pazar",
3002
+ "Pazartesi",
3003
+ "Salı",
3004
+ "Çarşamba",
3005
+ "Perşembe",
3006
+ "Cuma",
3007
+ "Cumartesi"
3008
+ ],
3009
+ weekdaysShort: [
3010
+ "Paz",
3011
+ "Ptz",
3012
+ "Sal",
3013
+ "Çar",
3014
+ "Per",
3015
+ "Cum",
3016
+ "Cts"
3017
+ ],
3018
+ weekdaysMin: [
3019
+ "Pa",
3020
+ "Pt",
3021
+ "Sa",
3022
+ "Ça",
3023
+ "Pe",
3024
+ "Cu",
3025
+ "Ct"
3026
+ ],
3027
+ meridiem: {
3028
+ am: "ÖÖ",
3029
+ pm: "ÖS"
3030
+ },
3031
+ formats: {
3032
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
3033
+ date: "DD.MM.YYYY",
3034
+ time: "HH:mm:ss",
3035
+ datetime: "DD.MM.YYYY HH:mm:ss",
3036
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
3037
+ }
3038
+ }
3039
+ }, N = {
3040
+ ar: {
3041
+ name: "ar",
3042
+ months: [
3043
+ "كانون الثاني",
3044
+ "شباط",
3045
+ "آذار",
3046
+ "نيسان",
3047
+ "أيار",
3048
+ "حزيران",
3049
+ "تموز",
3050
+ "آب",
3051
+ "أيلول",
3052
+ "تشرين الأول",
3053
+ "تشرين الثاني",
3054
+ "كانون الأول"
3055
+ ],
3056
+ monthsShort: [
3057
+ "1",
3058
+ "2",
3059
+ "3",
3060
+ "4",
3061
+ "5",
3062
+ "6",
3063
+ "7",
3064
+ "8",
3065
+ "9",
3066
+ "10",
3067
+ "11",
3068
+ "12"
3069
+ ],
3070
+ weekdays: [
3071
+ "الأحد",
3072
+ "الاثنين",
3073
+ "الثلاثاء",
3074
+ "الأربعاء",
3075
+ "الخميس",
3076
+ "الجمعة",
3077
+ "السبت"
3078
+ ],
3079
+ weekdaysShort: [
3080
+ "أحد",
3081
+ "اثن",
3082
+ "ثلا",
3083
+ "أربع",
3084
+ "خمس",
3085
+ "جمع",
3086
+ "سبت"
3087
+ ],
3088
+ weekdaysMin: [
3089
+ "ح",
3090
+ "ن",
3091
+ "ث",
3092
+ "ع",
3093
+ "خ",
3094
+ "ج",
3095
+ "س"
3096
+ ],
3097
+ meridiem: {
3098
+ am: "ص",
3099
+ pm: "م"
3100
+ },
3101
+ formats: {
3102
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
3103
+ date: "DD/MM/YYYY",
3104
+ time: "HH:mm:ss",
3105
+ datetime: "DD/MM/YYYY HH:mm:ss",
3106
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
3107
+ }
3108
+ },
3109
+ he: {
3110
+ name: "he",
3111
+ months: [
3112
+ "ינואר",
3113
+ "פברואר",
3114
+ "מרץ",
3115
+ "אפריל",
3116
+ "מאי",
3117
+ "יוני",
3118
+ "יולי",
3119
+ "אוגוסט",
3120
+ "ספטמבר",
3121
+ "אוקטובר",
3122
+ "נובמבר",
3123
+ "דצמבר"
3124
+ ],
3125
+ monthsShort: [
3126
+ "ינו",
3127
+ "פבר",
3128
+ "מרץ",
3129
+ "אפר",
3130
+ "מאי",
3131
+ "יוני",
3132
+ "יולי",
3133
+ "אוג",
3134
+ "ספט",
3135
+ "אוק",
3136
+ "נוב",
3137
+ "דצמ"
3138
+ ],
3139
+ weekdays: [
3140
+ "ראשון",
3141
+ "שני",
3142
+ "שלישי",
3143
+ "רביעי",
3144
+ "חמישי",
3145
+ "שישי",
3146
+ "שבת"
3147
+ ],
3148
+ weekdaysShort: [
3149
+ "ראשון",
3150
+ "שני",
3151
+ "שלישי",
3152
+ "רביעי",
3153
+ "חמישי",
3154
+ "שישי",
3155
+ "שבת"
3156
+ ],
3157
+ weekdaysMin: [
3158
+ "ראו",
3159
+ "שני",
3160
+ "שלי",
3161
+ "רבי",
3162
+ "חמי",
3163
+ "שיש",
3164
+ "שבת"
3165
+ ],
3166
+ meridiem: {
3167
+ am: "AM",
3168
+ pm: "PM"
3169
+ },
3170
+ formats: {
3171
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
3172
+ date: "DD/MM/YYYY",
3173
+ time: "HH:mm:ss",
3174
+ datetime: "DD/MM/YYYY HH:mm:ss",
3175
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
3176
+ }
3177
+ },
3178
+ hi: {
3179
+ name: "hi",
3180
+ months: [
3181
+ "जनवरी",
3182
+ "फ़रवरी",
3183
+ "मार्च",
3184
+ "अप्रैल",
3185
+ "मई",
3186
+ "जून",
3187
+ "जुलाई",
3188
+ "अगस्त",
3189
+ "सितंबर",
3190
+ "अक्टूबर",
3191
+ "नवंबर",
3192
+ "दिसंबर"
3193
+ ],
3194
+ monthsShort: [
3195
+ "जन",
3196
+ "फ़र",
3197
+ "मार",
3198
+ "अप्र",
3199
+ "मई",
3200
+ "जून",
3201
+ "जुल",
3202
+ "अग",
3203
+ "सित",
3204
+ "अक्ट",
3205
+ "नव",
3206
+ "दिस"
3207
+ ],
3208
+ weekdays: [
3209
+ "रविवार",
3210
+ "सोमवार",
3211
+ "मंगलवार",
3212
+ "बुधवार",
3213
+ "गुरुवार",
3214
+ "शुक्रवार",
3215
+ "शनिवार"
3216
+ ],
3217
+ weekdaysShort: [
3218
+ "रवि",
3219
+ "सोम",
3220
+ "मंग",
3221
+ "बुध",
3222
+ "गुरु",
3223
+ "शुक्र",
3224
+ "शनि"
3225
+ ],
3226
+ weekdaysMin: [
3227
+ "र",
3228
+ "स",
3229
+ "मं",
3230
+ "ब",
3231
+ "गु",
3232
+ "श",
3233
+ "श"
3234
+ ],
3235
+ meridiem: {
3236
+ am: "AM",
3237
+ pm: "PM"
3238
+ },
3239
+ formats: {
3240
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
3241
+ date: "DD/MM/YYYY",
3242
+ time: "HH:mm:ss",
3243
+ datetime: "DD/MM/YYYY HH:mm:ss",
3244
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
3245
+ }
3246
+ }
3247
+ }, P = {
3248
+ vi: {
3249
+ name: "vi",
3250
+ months: [
3251
+ "Tháng 1",
3252
+ "Tháng 2",
3253
+ "Tháng 3",
3254
+ "Tháng 4",
3255
+ "Tháng 5",
3256
+ "Tháng 6",
3257
+ "Tháng 7",
3258
+ "Tháng 8",
3259
+ "Tháng 9",
3260
+ "Tháng 10",
3261
+ "Tháng 11",
3262
+ "Tháng 12"
3263
+ ],
3264
+ monthsShort: [
3265
+ "Th1",
3266
+ "Th2",
3267
+ "Th3",
3268
+ "Th4",
3269
+ "Th5",
3270
+ "Th6",
3271
+ "Th7",
3272
+ "Th8",
3273
+ "Th9",
3274
+ "Th10",
3275
+ "Th11",
3276
+ "Th12"
3277
+ ],
3278
+ weekdays: [
3279
+ "Chủ nhật",
3280
+ "Thứ hai",
3281
+ "Thứ ba",
3282
+ "Thứ tư",
3283
+ "Thứ năm",
3284
+ "Thứ sáu",
3285
+ "Thứ bảy"
3286
+ ],
3287
+ weekdaysShort: [
3288
+ "CN",
3289
+ "Th2",
3290
+ "Th3",
3291
+ "Th4",
3292
+ "Th5",
3293
+ "Th6",
3294
+ "Th7"
3295
+ ],
3296
+ weekdaysMin: [
3297
+ "CN",
3298
+ "T2",
3299
+ "T3",
3300
+ "T4",
3301
+ "T5",
3302
+ "T6",
3303
+ "T7"
3304
+ ],
3305
+ meridiem: {
3306
+ am: "SA",
3307
+ pm: "CH"
3308
+ },
3309
+ formats: {
3310
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
3311
+ date: "DD/MM/YYYY",
3312
+ time: "HH:mm:ss",
3313
+ datetime: "DD/MM/YYYY HH:mm:ss",
3314
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
3315
+ }
3316
+ },
3317
+ id: {
3318
+ name: "id",
3319
+ months: [
3320
+ "Januari",
3321
+ "Februari",
3322
+ "Maret",
3323
+ "April",
3324
+ "Mei",
3325
+ "Juni",
3326
+ "Juli",
3327
+ "Agustus",
3328
+ "September",
3329
+ "Oktober",
3330
+ "November",
3331
+ "Desember"
3332
+ ],
3333
+ monthsShort: [
3334
+ "Jan",
3335
+ "Feb",
3336
+ "Mar",
3337
+ "Apr",
3338
+ "Mei",
3339
+ "Jun",
3340
+ "Jul",
3341
+ "Agu",
3342
+ "Sep",
3343
+ "Okt",
3344
+ "Nov",
3345
+ "Des"
3346
+ ],
3347
+ weekdays: [
3348
+ "Minggu",
3349
+ "Senin",
3350
+ "Selasa",
3351
+ "Rabu",
3352
+ "Kamis",
3353
+ "Jumat",
3354
+ "Sabtu"
3355
+ ],
3356
+ weekdaysShort: [
3357
+ "Min",
3358
+ "Sen",
3359
+ "Sel",
3360
+ "Rab",
3361
+ "Kam",
3362
+ "Jum",
3363
+ "Sab"
3364
+ ],
3365
+ weekdaysMin: [
3366
+ "Mg",
3367
+ "Sn",
3368
+ "Sl",
3369
+ "Rb",
3370
+ "Km",
3371
+ "Jm",
3372
+ "Sb"
3373
+ ],
3374
+ meridiem: {
3375
+ am: "AM",
3376
+ pm: "PM"
3377
+ },
3378
+ formats: {
3379
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
3380
+ date: "DD/MM/YYYY",
3381
+ time: "HH:mm:ss",
3382
+ datetime: "DD/MM/YYYY HH:mm:ss",
3383
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
3384
+ }
3385
+ },
3386
+ th: {
3387
+ name: "th",
3388
+ months: [
3389
+ "มกราคม",
3390
+ "กุมภาพันธ์",
3391
+ "มีนาคม",
3392
+ "เมษายน",
3393
+ "พฤษภาคม",
3394
+ "มิถุนายน",
3395
+ "กรกฎาคม",
3396
+ "สิงหาคม",
3397
+ "กันยายน",
3398
+ "ตุลาคม",
3399
+ "พฤศจิกายน",
3400
+ "ธันวาคม"
3401
+ ],
3402
+ monthsShort: [
3403
+ "ม.ค.",
3404
+ "ก.พ.",
3405
+ "มี.ค.",
3406
+ "เม.ย.",
3407
+ "พ.ค.",
3408
+ "มิ.ย.",
3409
+ "ก.ค.",
3410
+ "ส.ค.",
3411
+ "ก.ย.",
3412
+ "ต.ค.",
3413
+ "พ.ย.",
3414
+ "ธ.ค."
3415
+ ],
3416
+ weekdays: [
3417
+ "อาทิตย์",
3418
+ "จันทร์",
3419
+ "อังคาร",
3420
+ "พุธ",
3421
+ "พฤหัสบดี",
3422
+ "ศุกร์",
3423
+ "เสาร์"
3424
+ ],
3425
+ weekdaysShort: [
3426
+ "อา.",
3427
+ "จ.",
3428
+ "อ.",
3429
+ "พ.",
3430
+ "พฤ.",
3431
+ "ศ.",
3432
+ "ส."
3433
+ ],
3434
+ weekdaysMin: [
3435
+ "อา",
3436
+ "จ",
3437
+ "อ",
3438
+ "พ",
3439
+ "พฤ",
3440
+ "ศ",
3441
+ "ส"
3442
+ ],
3443
+ meridiem: {
3444
+ am: "AM",
3445
+ pm: "PM"
3446
+ },
3447
+ formats: {
3448
+ iso: "YYYY-MM-DDTHH:mm:ss.SSSZ",
3449
+ date: "DD/MM/YYYY",
3450
+ time: "HH:mm:ss",
3451
+ datetime: "DD/MM/YYYY HH:mm:ss",
3452
+ rfc2822: "ddd, DD MMM YYYY HH:mm:ss Z"
3453
+ }
3454
+ }
3455
+ }, F = {
3456
+ ...f,
3457
+ ...g,
3458
+ ...x,
3459
+ ...S,
3460
+ ...C,
3461
+ ...j,
3462
+ ...M,
3463
+ ...N,
3464
+ ...P
3465
+ };
3466
+ function te(e) {
3467
+ e instanceof Map ? Object.entries(F).forEach(([t, n]) => {
3468
+ e.set(t, n);
3469
+ }) : Object.entries(F).forEach(([t, n]) => {
3470
+ e[t] = n;
3471
+ });
3472
+ }
3473
+ function I() {
3474
+ let e = Object.keys(F);
3475
+ for (; e.length < 40;) e.push(`locale-${e.length + 1}`);
3476
+ return e;
3477
+ }
3478
+ var L = 40, R = class {
3479
+ id = "gregory";
3480
+ name = "Gregorian Calendar";
3481
+ locale = "en";
3482
+ monthNames = [
3483
+ "January",
3484
+ "February",
3485
+ "March",
3486
+ "April",
3487
+ "May",
3488
+ "June",
3489
+ "July",
3490
+ "August",
3491
+ "September",
3492
+ "October",
3493
+ "November",
3494
+ "December"
3495
+ ];
3496
+ monthNamesShort = [
3497
+ "Jan",
3498
+ "Feb",
3499
+ "Mar",
3500
+ "Apr",
3501
+ "May",
3502
+ "Jun",
3503
+ "Jul",
3504
+ "Aug",
3505
+ "Sep",
3506
+ "Oct",
3507
+ "Nov",
3508
+ "Dec"
3509
+ ];
3510
+ weekdayNames = [
3511
+ "Sunday",
3512
+ "Monday",
3513
+ "Tuesday",
3514
+ "Wednesday",
3515
+ "Thursday",
3516
+ "Friday",
3517
+ "Saturday"
3518
+ ];
3519
+ weekdayNamesShort = [
3520
+ "Sun",
3521
+ "Mon",
3522
+ "Tue",
3523
+ "Wed",
3524
+ "Thu",
3525
+ "Fri",
3526
+ "Sat"
3527
+ ];
3528
+ getMonthName(e, t = !1) {
3529
+ return (t ? this.monthNamesShort : this.monthNames)[Math.max(0, Math.min(11, e - 1))];
3530
+ }
3531
+ getWeekdayName(e, t = !1) {
3532
+ return (t ? this.weekdayNamesShort : this.weekdayNames)[Math.max(0, Math.min(6, e - 1))];
3533
+ }
3534
+ isLeapYear(e) {
3535
+ return e % 4 == 0 && e % 100 != 0 || e % 400 == 0;
3536
+ }
3537
+ daysInMonth(e, t) {
3538
+ return t === 2 && this.isLeapYear(e) ? 29 : [
3539
+ 31,
3540
+ 28,
3541
+ 31,
3542
+ 30,
3543
+ 31,
3544
+ 30,
3545
+ 31,
3546
+ 31,
3547
+ 30,
3548
+ 31,
3549
+ 30,
3550
+ 31
3551
+ ][Math.max(0, Math.min(11, t - 1))];
3552
+ }
3553
+ daysInYear(e) {
3554
+ return this.isLeapYear(e) ? 366 : 365;
3555
+ }
3556
+ }, z = class e {
3557
+ static instance;
3558
+ calendars = /* @__PURE__ */ new Map();
3559
+ defaultCalendar = "gregory";
3560
+ constructor() {
3561
+ this.register(new R());
3562
+ }
3563
+ static getInstance() {
3564
+ return e.instance ||= new e(), e.instance;
3565
+ }
3566
+ register(e) {
3567
+ this.calendars.set(e.id, e);
3568
+ }
3569
+ get(e) {
3570
+ return this.calendars.get(e);
3571
+ }
3572
+ list() {
3573
+ return Array.from(this.calendars.keys());
3574
+ }
3575
+ setDefault(e) {
3576
+ this.calendars.has(e) && (this.defaultCalendar = e);
3577
+ }
3578
+ getDefault() {
3579
+ let e = this.calendars.get(this.defaultCalendar);
3580
+ if (!e) throw Error(`Default calendar '${this.defaultCalendar}' not found`);
3581
+ return e;
3582
+ }
3583
+ }, B = z.getInstance(), V = class {
3584
+ id = "islamic";
3585
+ name = "Islamic Calendar (Hijri)";
3586
+ locale = "ar";
3587
+ monthNames = [
3588
+ "Muharram",
3589
+ "Safar",
3590
+ "Rabi al-awwal",
3591
+ "Rabi al-thani",
3592
+ "Jumada al-awwal",
3593
+ "Jumada al-thani",
3594
+ "Rajab",
3595
+ "Sha'ban",
3596
+ "Ramadan",
3597
+ "Shawwal",
3598
+ "Dhu al-Qi'dah",
3599
+ "Dhu al-Hijjah"
3600
+ ];
3601
+ getMonthName(e) {
3602
+ return this.monthNames[Math.max(0, Math.min(11, e - 1))];
3603
+ }
3604
+ getWeekdayName(e, t = !1) {
3605
+ return (t ? [
3606
+ "Ahd",
3607
+ "Ith",
3608
+ "Sel",
3609
+ "Rab",
3610
+ "Kha",
3611
+ "Jum",
3612
+ "Sab"
3613
+ ] : [
3614
+ "Ahad",
3615
+ "Ithnayn",
3616
+ "Salasa",
3617
+ "Rabi",
3618
+ "Khamis",
3619
+ "Jumah",
3620
+ "Sabt"
3621
+ ])[Math.max(0, Math.min(6, e - 1))];
3622
+ }
3623
+ isLeapYear(e) {
3624
+ return [
3625
+ 2,
3626
+ 5,
3627
+ 7,
3628
+ 10,
3629
+ 13,
3630
+ 16,
3631
+ 18,
3632
+ 21,
3633
+ 24,
3634
+ 26,
3635
+ 29
3636
+ ].includes(e % 30);
3637
+ }
3638
+ daysInMonth(e, t) {
3639
+ return t % 2 == 1 || t === 12 && this.isLeapYear(e) ? 30 : 29;
3640
+ }
3641
+ daysInYear(e) {
3642
+ return this.isLeapYear(e) ? 355 : 354;
3643
+ }
3644
+ }, H = class {
3645
+ id = "hebrew";
3646
+ name = "Hebrew Calendar";
3647
+ locale = "he";
3648
+ monthNames = [
3649
+ "Tishrei",
3650
+ "Cheshvan",
3651
+ "Kislev",
3652
+ "Tevet",
3653
+ "Shevat",
3654
+ "Adar",
3655
+ "Nisan",
3656
+ "Iyar",
3657
+ "Sivan",
3658
+ "Tammuz",
3659
+ "Av",
3660
+ "Elul"
3661
+ ];
3662
+ getMonthName(e) {
3663
+ return this.monthNames[Math.max(0, Math.min(11, e - 1))];
3664
+ }
3665
+ getWeekdayName(e, t = !1) {
3666
+ return (t ? [
3667
+ "Sun",
3668
+ "Mon",
3669
+ "Tue",
3670
+ "Wed",
3671
+ "Thu",
3672
+ "Fri",
3673
+ "Sat"
3674
+ ] : [
3675
+ "Sunday",
3676
+ "Monday",
3677
+ "Tuesday",
3678
+ "Wednesday",
3679
+ "Thursday",
3680
+ "Friday",
3681
+ "Saturday"
3682
+ ])[Math.max(0, Math.min(6, e - 1))];
3683
+ }
3684
+ isLeapYear(e) {
3685
+ return [
3686
+ 3,
3687
+ 6,
3688
+ 8,
3689
+ 11,
3690
+ 14,
3691
+ 17,
3692
+ 19
3693
+ ].includes(e % 19);
3694
+ }
3695
+ daysInMonth(e, t) {
3696
+ return [
3697
+ 30,
3698
+ 29,
3699
+ 30,
3700
+ 29,
3701
+ 30,
3702
+ 29,
3703
+ 30,
3704
+ 29,
3705
+ 30,
3706
+ 29,
3707
+ 30,
3708
+ 29
3709
+ ][Math.max(0, Math.min(11, t - 1))];
3710
+ }
3711
+ daysInYear(e) {
3712
+ return this.isLeapYear(e) ? 384 : 354;
3713
+ }
3714
+ }, U = class {
3715
+ id = "chinese";
3716
+ name = "Chinese Calendar";
3717
+ locale = "zh";
3718
+ monthNames = [
3719
+ "正月",
3720
+ "二月",
3721
+ "三月",
3722
+ "四月",
3723
+ "五月",
3724
+ "六月",
3725
+ "七月",
3726
+ "八月",
3727
+ "九月",
3728
+ "十月",
3729
+ "冬月",
3730
+ "腊月"
3731
+ ];
3732
+ terrestrialBranches = [
3733
+ "子",
3734
+ "丑",
3735
+ "寅",
3736
+ "卯",
3737
+ "辰",
3738
+ "巳",
3739
+ "午",
3740
+ "未",
3741
+ "申",
3742
+ "酉",
3743
+ "戌",
3744
+ "亥"
3745
+ ];
3746
+ getMonthName(e) {
3747
+ return this.monthNames[Math.max(0, Math.min(11, e - 1))];
3748
+ }
3749
+ getWeekdayName(e, t = !1) {
3750
+ return (t ? [
3751
+ "日",
3752
+ "一",
3753
+ "二",
3754
+ "三",
3755
+ "四",
3756
+ "五",
3757
+ "六"
3758
+ ] : [
3759
+ "星期日",
3760
+ "星期一",
3761
+ "星期二",
3762
+ "星期三",
3763
+ "星期四",
3764
+ "星期五",
3765
+ "星期六"
3766
+ ])[Math.max(0, Math.min(6, e - 1))];
3767
+ }
3768
+ isLeapYear(e) {
3769
+ return e % 3 == 0;
3770
+ }
3771
+ daysInMonth(e, t) {
3772
+ return t % 2 == 0 ? 30 : 29;
3773
+ }
3774
+ daysInYear(e) {
3775
+ return this.isLeapYear(e) ? 384 : 354;
3776
+ }
3777
+ getZodiacSign(e) {
3778
+ return this.terrestrialBranches[e % 12];
3779
+ }
3780
+ }, W = class {
3781
+ id = "japanese";
3782
+ name = "Japanese Calendar";
3783
+ locale = "ja";
3784
+ monthNames = [
3785
+ "1月",
3786
+ "2月",
3787
+ "3月",
3788
+ "4月",
3789
+ "5月",
3790
+ "6月",
3791
+ "7月",
3792
+ "8月",
3793
+ "9月",
3794
+ "10月",
3795
+ "11月",
3796
+ "12月"
3797
+ ];
3798
+ getMonthName(e) {
3799
+ return this.monthNames[Math.max(0, Math.min(11, e - 1))];
3800
+ }
3801
+ getWeekdayName(e, t = !1) {
3802
+ return (t ? [
3803
+ "日",
3804
+ "月",
3805
+ "火",
3806
+ "水",
3807
+ "木",
3808
+ "金",
3809
+ "土"
3810
+ ] : [
3811
+ "日曜日",
3812
+ "月曜日",
3813
+ "火曜日",
3814
+ "水曜日",
3815
+ "木曜日",
3816
+ "金曜日",
3817
+ "土曜日"
3818
+ ])[Math.max(0, Math.min(6, e - 1))];
3819
+ }
3820
+ isLeapYear(e) {
3821
+ return e % 4 == 0 && e % 100 != 0 || e % 400 == 0;
3822
+ }
3823
+ daysInMonth(e, t) {
3824
+ return t === 2 && this.isLeapYear(e) ? 29 : [
3825
+ 31,
3826
+ 28,
3827
+ 31,
3828
+ 30,
3829
+ 31,
3830
+ 30,
3831
+ 31,
3832
+ 31,
3833
+ 30,
3834
+ 31,
3835
+ 30,
3836
+ 31
3837
+ ][Math.max(0, Math.min(11, t - 1))];
3838
+ }
3839
+ daysInYear(e) {
3840
+ return this.isLeapYear(e) ? 366 : 365;
3841
+ }
3842
+ }, G = class {
3843
+ id = "buddhist";
3844
+ name = "Buddhist Calendar";
3845
+ locale = "th";
3846
+ monthNames = [
3847
+ "January",
3848
+ "February",
3849
+ "March",
3850
+ "April",
3851
+ "May",
3852
+ "June",
3853
+ "July",
3854
+ "August",
3855
+ "September",
3856
+ "October",
3857
+ "November",
3858
+ "December"
3859
+ ];
3860
+ getMonthName(e) {
3861
+ return this.monthNames[Math.max(0, Math.min(11, e - 1))];
3862
+ }
3863
+ getWeekdayName(e) {
3864
+ return [
3865
+ "Sunday",
3866
+ "Monday",
3867
+ "Tuesday",
3868
+ "Wednesday",
3869
+ "Thursday",
3870
+ "Friday",
3871
+ "Saturday"
3872
+ ][Math.max(0, Math.min(6, e - 1))];
3873
+ }
3874
+ isLeapYear(e) {
3875
+ let t = e - 543;
3876
+ return t % 4 == 0 && t % 100 != 0 || t % 400 == 0;
3877
+ }
3878
+ daysInMonth(e, t) {
3879
+ return t === 2 && this.isLeapYear(e) ? 29 : [
3880
+ 31,
3881
+ 28,
3882
+ 31,
3883
+ 30,
3884
+ 31,
3885
+ 30,
3886
+ 31,
3887
+ 31,
3888
+ 30,
3889
+ 31,
3890
+ 30,
3891
+ 31
3892
+ ][Math.max(0, Math.min(11, t - 1))];
3893
+ }
3894
+ daysInYear(e) {
3895
+ return this.isLeapYear(e) ? 366 : 365;
3896
+ }
3897
+ }, K = class e {
3898
+ static instance;
3899
+ plugins = /* @__PURE__ */ new Map();
3900
+ static getInstance() {
3901
+ return e.instance ||= new e(), e.instance;
3902
+ }
3903
+ static use(t, n, r) {
3904
+ e.getInstance().register(t, n, r);
3905
+ }
3906
+ static useMultiple(t, n, r) {
3907
+ let i = e.getInstance();
3908
+ t.forEach((e) => i.register(e, n, r));
3909
+ }
3910
+ static getPlugin(t) {
3911
+ return e.getInstance().plugins.get(t);
3912
+ }
3913
+ static hasPlugin(t) {
3914
+ return e.getInstance().plugins.has(t);
3915
+ }
3916
+ static listPlugins() {
3917
+ let t = e.getInstance();
3918
+ return Array.from(t.plugins.keys());
3919
+ }
3920
+ static unuse(t) {
3921
+ return e.getInstance().plugins.delete(t);
3922
+ }
3923
+ static clear() {
3924
+ e.getInstance().plugins.clear();
827
3925
  }
828
3926
  register(e, t, n) {
829
3927
  if (this.plugins.has(e.name)) {
@@ -836,12 +3934,397 @@ var n = class {
836
3934
  throw console.error(`Failed to register plugin "${e.name}":`, t), Error(`Failed to register plugin "${e.name}": ${t instanceof Error ? t.message : String(t)}`);
837
3935
  }
838
3936
  }
839
- };
3937
+ }, q = [
3938
+ {
3939
+ l: "s",
3940
+ r: 44,
3941
+ d: "second"
3942
+ },
3943
+ {
3944
+ l: "m",
3945
+ r: 89
3946
+ },
3947
+ {
3948
+ l: "mm",
3949
+ r: 44,
3950
+ d: "minute"
3951
+ },
3952
+ {
3953
+ l: "h",
3954
+ r: 89
3955
+ },
3956
+ {
3957
+ l: "hh",
3958
+ r: 21,
3959
+ d: "hour"
3960
+ },
3961
+ {
3962
+ l: "d",
3963
+ r: 35
3964
+ },
3965
+ {
3966
+ l: "dd",
3967
+ r: 25,
3968
+ d: "day"
3969
+ },
3970
+ {
3971
+ l: "M",
3972
+ r: 45
3973
+ },
3974
+ {
3975
+ l: "MM",
3976
+ r: 10,
3977
+ d: "month"
3978
+ },
3979
+ {
3980
+ l: "y",
3981
+ r: 17
3982
+ },
3983
+ {
3984
+ l: "yy",
3985
+ d: "year"
3986
+ }
3987
+ ], J = {
3988
+ future: "in %s",
3989
+ past: "%s ago",
3990
+ s: "a few seconds",
3991
+ m: "a minute",
3992
+ mm: "%d minutes",
3993
+ h: "an hour",
3994
+ hh: "%d hours",
3995
+ d: "a day",
3996
+ dd: "%d days",
3997
+ M: "a month",
3998
+ MM: "%d months",
3999
+ y: "a year",
4000
+ yy: "%d years"
4001
+ }, Y = class {
4002
+ name = "relative-time";
4003
+ version = "1.0.0";
4004
+ config;
4005
+ formats;
4006
+ constructor(e) {
4007
+ this.config = {
4008
+ thresholds: e?.thresholds || q,
4009
+ rounding: e?.rounding || Math.round
4010
+ }, this.formats = J;
4011
+ }
4012
+ install(e) {
4013
+ let t = this;
4014
+ e.prototype.fromNow = function(e) {
4015
+ return t.formatRelativeTime(this, !1, e);
4016
+ }, e.prototype.toNow = function(e) {
4017
+ return t.formatRelativeTime(this, !0, e);
4018
+ }, e.prototype.humanize = function(e, n) {
4019
+ return e ? t.formatRelativeTime(this, e.isAfter(this), n) : t.formatRelativeTime(this, !1, n);
4020
+ };
4021
+ }
4022
+ formatRelativeTime(e, t, n) {
4023
+ let r = e.constructor.now().diff(e, "millisecond"), i = Math.abs(r), a = t ?? !(r > 0), o = this.getRelativeTimeString(i);
4024
+ return n ? o : (a ? this.formats.future : this.formats.past).replace("%s", o);
4025
+ }
4026
+ getRelativeTimeString(e) {
4027
+ let t = this.config.thresholds || q, n = this.config.rounding || Math.round;
4028
+ for (let r = 0; r < t.length; r++) {
4029
+ let i = t[r];
4030
+ if (r + 1 < t.length && t[r + 1] && i.r && e < i.r * 1e3) continue;
4031
+ let a;
4032
+ a = i.d ? n(e / this.getUnitMilliseconds(i.d)) : 1;
4033
+ let o = i.l, s = this.formats[o] || o;
4034
+ return typeof s == "string" && s.includes("%d") ? s.replace("%d", String(a)) : s;
4035
+ }
4036
+ return `${n(e / 1e3)} seconds`;
4037
+ }
4038
+ getUnitMilliseconds(e) {
4039
+ return {
4040
+ second: 1e3,
4041
+ minute: 1e3 * 60,
4042
+ hour: 1e3 * 60 * 60,
4043
+ day: 1e3 * 60 * 60 * 24,
4044
+ month: 1e3 * 60 * 60 * 24 * 30,
4045
+ year: 1e3 * 60 * 60 * 24 * 365
4046
+ }[e] || 1;
4047
+ }
4048
+ setFormats(e) {
4049
+ Object.assign(this.formats, e);
4050
+ }
4051
+ getFormats() {
4052
+ return { ...this.formats };
4053
+ }
4054
+ }, X = new Y(), Z = class e {
4055
+ years = 0;
4056
+ months = 0;
4057
+ weeks = 0;
4058
+ days = 0;
4059
+ hours = 0;
4060
+ minutes = 0;
4061
+ seconds = 0;
4062
+ milliseconds = 0;
4063
+ constructor(e) {
4064
+ this.years = e.years || 0, this.months = e.months || 0, this.weeks = e.weeks || 0, this.days = e.days || 0, this.hours = e.hours || 0, this.minutes = e.minutes || 0, this.seconds = e.seconds || 0, this.milliseconds = e.milliseconds || 0;
4065
+ }
4066
+ static fromISO(t) {
4067
+ let n = t.match(/^(-)?P(?:(\d+)Y)?(?:(\d+)M)?(?:(\d+)W)?(?:(\d+)D)?(?:T(?:(\d+)H)?(?:(\d+)M)?(?:([\d.]+)S)?)?$/);
4068
+ if (!n) throw Error(`Invalid ISO 8601 duration: ${t}`);
4069
+ let [, r, i, a, , o, s, c, l] = n, u = r ? -1 : 1;
4070
+ return new e({
4071
+ years: parseInt(i || "0", 10) * u,
4072
+ months: parseInt(a || "0", 10) * u,
4073
+ days: parseInt(o || "0", 10) * u,
4074
+ hours: parseInt(s || "0", 10) * u,
4075
+ minutes: parseInt(c || "0", 10) * u,
4076
+ seconds: parseFloat(l || "0") * u
4077
+ });
4078
+ }
4079
+ static between(t, n) {
4080
+ let r = t.toTemporal(), i = n.toTemporal().since(r);
4081
+ return new e({
4082
+ years: i.years || 0,
4083
+ months: i.months || 0,
4084
+ weeks: 0,
4085
+ days: i.days || 0,
4086
+ hours: i.hours || 0,
4087
+ minutes: i.minutes || 0,
4088
+ seconds: i.seconds || 0,
4089
+ milliseconds: i.milliseconds || 0
4090
+ });
4091
+ }
4092
+ static fromMilliseconds(t) {
4093
+ let n = t < 0, r = Math.abs(t), i = Math.floor(r / (1e3 * 60 * 60 * 24 * 365)), a = Math.floor(r % (1e3 * 60 * 60 * 24 * 365) / (1e3 * 60 * 60 * 24 * 30)), o = Math.floor(r % (1e3 * 60 * 60 * 24 * 30) / (1e3 * 60 * 60 * 24)), s = Math.floor(r % (1e3 * 60 * 60 * 24) / (1e3 * 60 * 60)), c = Math.floor(r % (1e3 * 60 * 60) / (1e3 * 60)), l = Math.floor(r % (1e3 * 60) / 1e3), u = Math.floor(r % 1e3), d = n ? -1 : 1;
4094
+ return new e({
4095
+ years: i * d,
4096
+ months: a * d,
4097
+ days: o * d,
4098
+ hours: s * d,
4099
+ minutes: c * d,
4100
+ seconds: l * d,
4101
+ milliseconds: u * d
4102
+ });
4103
+ }
4104
+ as(e) {
4105
+ return this.asMilliseconds() / {
4106
+ milliseconds: 1,
4107
+ seconds: 1e3,
4108
+ minutes: 1e3 * 60,
4109
+ hours: 1e3 * 60 * 60,
4110
+ days: 1e3 * 60 * 60 * 24,
4111
+ weeks: 1e3 * 60 * 60 * 24 * 7,
4112
+ months: 1e3 * 60 * 60 * 24 * 30,
4113
+ years: 1e3 * 60 * 60 * 24 * 365
4114
+ }[e];
4115
+ }
4116
+ asMilliseconds() {
4117
+ return this.years * 1e3 * 60 * 60 * 24 * 365 + this.months * 1e3 * 60 * 60 * 24 * 30 + this.weeks * 1e3 * 60 * 60 * 24 * 7 + this.days * 1e3 * 60 * 60 * 24 + this.hours * 1e3 * 60 * 60 + this.minutes * 1e3 * 60 + this.seconds * 1e3 + this.milliseconds;
4118
+ }
4119
+ asSeconds() {
4120
+ return this.asMilliseconds() / 1e3;
4121
+ }
4122
+ asMinutes() {
4123
+ return this.asSeconds() / 60;
4124
+ }
4125
+ asHours() {
4126
+ return this.asMinutes() / 60;
4127
+ }
4128
+ asDays() {
4129
+ return this.asHours() / 24;
4130
+ }
4131
+ asWeeks() {
4132
+ return this.asDays() / 7;
4133
+ }
4134
+ asMonths() {
4135
+ return this.asDays() / 30;
4136
+ }
4137
+ asYears() {
4138
+ return this.asDays() / 365;
4139
+ }
4140
+ toObject() {
4141
+ return {
4142
+ years: this.years,
4143
+ months: this.months,
4144
+ weeks: this.weeks,
4145
+ days: this.days,
4146
+ hours: this.hours,
4147
+ minutes: this.minutes,
4148
+ seconds: this.seconds,
4149
+ milliseconds: this.milliseconds
4150
+ };
4151
+ }
4152
+ toISO() {
4153
+ let e = "";
4154
+ this.years && (e += `${this.years}Y`), this.months && (e += `${this.months}M`), (this.weeks || this.days) && (e += `${this.weeks * 7 + this.days}D`);
4155
+ let t = "";
4156
+ return this.hours && (t += `${this.hours}H`), this.minutes && (t += `${this.minutes}M`), (this.seconds || this.milliseconds) && (t += `${this.seconds + this.milliseconds / 1e3}S`), `${this.isNegative() ? "-" : ""}P${e}${t ? `T${t}` : ""}`;
4157
+ }
4158
+ humanize() {
4159
+ let e = [];
4160
+ if (this.years && e.push(`${Math.abs(this.years)} year${Math.abs(this.years) === 1 ? "" : "s"}`), this.months && e.push(`${Math.abs(this.months)} month${Math.abs(this.months) === 1 ? "" : "s"}`), this.weeks && e.push(`${Math.abs(this.weeks)} week${Math.abs(this.weeks) === 1 ? "" : "s"}`), this.days && e.push(`${Math.abs(this.days)} day${Math.abs(this.days) === 1 ? "" : "s"}`), this.hours && e.push(`${Math.abs(this.hours)} hour${Math.abs(this.hours) === 1 ? "" : "s"}`), this.minutes && e.push(`${Math.abs(this.minutes)} minute${Math.abs(this.minutes) === 1 ? "" : "s"}`), this.seconds && e.push(`${Math.abs(this.seconds)} second${Math.abs(this.seconds) === 1 ? "" : "s"}`), this.milliseconds && e.push(`${Math.abs(this.milliseconds)} ms`), e.length === 0) return "0 seconds";
4161
+ let t = e.join(", ");
4162
+ return this.isNegative() ? `-${t}` : t;
4163
+ }
4164
+ isNegative() {
4165
+ return this.years < 0 || this.months < 0 || this.weeks < 0 || this.days < 0 || this.hours < 0 || this.minutes < 0 || this.seconds < 0 || this.milliseconds < 0;
4166
+ }
4167
+ abs() {
4168
+ return new e({
4169
+ years: Math.abs(this.years),
4170
+ months: Math.abs(this.months),
4171
+ weeks: Math.abs(this.weeks),
4172
+ days: Math.abs(this.days),
4173
+ hours: Math.abs(this.hours),
4174
+ minutes: Math.abs(this.minutes),
4175
+ seconds: Math.abs(this.seconds),
4176
+ milliseconds: Math.abs(this.milliseconds)
4177
+ });
4178
+ }
4179
+ toString() {
4180
+ return this.toISO();
4181
+ }
4182
+ }, Q = class {
4183
+ name = "duration";
4184
+ version = "1.0.0";
4185
+ install(e) {
4186
+ e.prototype.duration = function(e) {
4187
+ return Z.between(this, e);
4188
+ }, e.Duration = Z, e.duration = {
4189
+ fromISO: (e) => Z.fromISO(e),
4190
+ between: (e, t) => Z.between(e, t),
4191
+ fromMilliseconds: (e) => Z.fromMilliseconds(e)
4192
+ };
4193
+ }
4194
+ }, ne = new Q(), $ = class {
4195
+ name = "advanced-format";
4196
+ version = "1.0.0";
4197
+ install(e) {
4198
+ let t = e.prototype.format;
4199
+ e.prototype.format = function(e) {
4200
+ if (!e || typeof e != "string" || !/Q|Do|w|W|gggg|GGGG|k{1,2}|X|x|zzz?/.test(e)) return t.call(this, e);
4201
+ let n = this.toTemporal(), r = "toPlainDateTime" in n ? n.toPlainDateTime() : n, i = (e) => {
4202
+ let t = [
4203
+ "th",
4204
+ "st",
4205
+ "nd",
4206
+ "rd"
4207
+ ], n = e % 100;
4208
+ return e + (t[(n - 20) % 10] || t[n] || t[0]);
4209
+ }, a = (e, t) => String(e).padStart(t, "0"), o = (e) => {
4210
+ let t = new Date(e.year, 0, 4), n = new Date(t);
4211
+ n.setDate(t.getDate() - t.getDay() + (t.getDay() === 0 ? -6 : 1));
4212
+ let r = new Date(e.year, e.month - 1, e.day), i = Math.floor((r.getTime() - n.getTime()) / (10080 * 60 * 1e3)) + 1;
4213
+ return Math.max(1, i);
4214
+ }, s = (e) => {
4215
+ let t = Math.ceil((e.day + new Date(e.year, e.month - 1, 1).getDay()) / 7);
4216
+ return Math.max(1, t);
4217
+ }, c = (e) => {
4218
+ let t = new Date(e.year, e.month - 1, e.day), n = t.getTime() < new Date(e.year, 0, 1).getTime() ? -1 : t.getTime() >= new Date(e.year + 1, 0, 1).getTime() ? 1 : 0;
4219
+ return e.year + n;
4220
+ }, l = (e) => {
4221
+ let t = e.month === 1 && e.day < 4 ? -1 : e.month === 12 && e.day > 28 ? 1 : 0;
4222
+ return e.year + t;
4223
+ }, u = e.replace(/Q|Do|w|W|gggg|GGGG|k{1,2}|X|x|zzz?/g, (e) => {
4224
+ let t = "";
4225
+ switch (e) {
4226
+ case "Q":
4227
+ t = String(Math.ceil(r.month / 3));
4228
+ break;
4229
+ case "Do":
4230
+ t = i(r.day);
4231
+ break;
4232
+ case "W":
4233
+ case "WW":
4234
+ t = a(o(r), e === "W" ? 1 : 2);
4235
+ break;
4236
+ case "w":
4237
+ case "ww":
4238
+ t = a(s(r), e === "w" ? 1 : 2);
4239
+ break;
4240
+ case "GGGG":
4241
+ t = String(c(r));
4242
+ break;
4243
+ case "gggg":
4244
+ t = String(l(r));
4245
+ break;
4246
+ case "k":
4247
+ case "kk":
4248
+ t = a(r.hour === 0 ? 24 : r.hour, e === "k" ? 1 : 2);
4249
+ break;
4250
+ case "X":
4251
+ t = String(Math.floor(this.valueOf() / 1e3));
4252
+ break;
4253
+ case "x":
4254
+ t = String(this.valueOf());
4255
+ break;
4256
+ case "z":
4257
+ t = `${this.getTimezoneOffset()}`;
4258
+ break;
4259
+ case "zzz":
4260
+ t = `${this.getTimezoneOffsetLong()}`;
4261
+ break;
4262
+ default: return e;
4263
+ }
4264
+ return `[${t}]`;
4265
+ });
4266
+ return t.call(this, u);
4267
+ };
4268
+ }
4269
+ getOrdinal(e) {
4270
+ let t = [
4271
+ "th",
4272
+ "st",
4273
+ "nd",
4274
+ "rd"
4275
+ ], n = e % 100;
4276
+ return e + (t[(n - 20) % 10] || t[n] || t[0]);
4277
+ }
4278
+ padNumber(e, t) {
4279
+ return String(e).padStart(t, "0");
4280
+ }
4281
+ getISOWeek(e) {
4282
+ let t = new Date(e.year, 0, 4), n = new Date(t);
4283
+ n.setDate(t.getDate() - t.getDay() + (t.getDay() === 0 ? -6 : 1));
4284
+ let r = new Date(e.year, e.month - 1, e.day), i = Math.floor((r.getTime() - n.getTime()) / (10080 * 60 * 1e3)) + 1;
4285
+ return Math.max(1, i);
4286
+ }
4287
+ getWeekOfYear(e) {
4288
+ let t = Math.ceil((e.day + new Date(e.year, e.month - 1, 1).getDay()) / 7);
4289
+ return Math.max(1, t);
4290
+ }
4291
+ getISOWeekYear(e) {
4292
+ let t = new Date(e.year, e.month - 1, e.day), n = t.getTime() < new Date(e.year, 0, 1).getTime() ? -1 : t.getTime() >= new Date(e.year + 1, 0, 1).getTime() ? 1 : 0;
4293
+ return e.year + n;
4294
+ }
4295
+ getWeekYear(e) {
4296
+ let t = e.month === 1 && e.day < 4 ? -1 : e.month === 12 && e.day > 28 ? 1 : 0;
4297
+ return e.year + t;
4298
+ }
4299
+ getTimezoneOffset() {
4300
+ try {
4301
+ let e = /* @__PURE__ */ new Date();
4302
+ return new Intl.DateTimeFormat("en-US", {
4303
+ timeZone: "UTC",
4304
+ timeZoneName: "short"
4305
+ }).formatToParts(e).find((e) => e.type === "timeZoneName")?.value || "UTC";
4306
+ } catch {
4307
+ return "UTC";
4308
+ }
4309
+ }
4310
+ getTimezoneOffsetLong() {
4311
+ try {
4312
+ let e = /* @__PURE__ */ new Date();
4313
+ return new Intl.DateTimeFormat("en-US", {
4314
+ timeZone: "UTC",
4315
+ timeZoneName: "long"
4316
+ }).formatToParts(e).find((e) => e.type === "timeZoneName")?.value || "Coordinated Universal Time";
4317
+ } catch {
4318
+ return "Coordinated Universal Time";
4319
+ }
4320
+ }
4321
+ }, re = new $();
840
4322
  //#endregion
841
4323
  //#region src/index.ts
842
- function f(e, t) {
4324
+ function ie(e, t) {
843
4325
  return new s(e, t);
844
4326
  }
845
- var p = "2.0.5";
4327
+ var ae = "2.0.6";
4328
+ a.getInstance().loadLocales(F);
846
4329
  //#endregion
847
- export { l as CalendarManager, o as DateFormatter, r as EN_LOCALE, i as ES_LOCALE, c as GregorianCalendar, a as LocaleManager, d as PluginManager, n as TemporalAdapter, s as TimeGuard, u as calendarManager, f as timeGuard, p as version };
4330
+ export { F as ALL_LOCALES, $ as AdvancedFormatPlugin, G as BuddhistCalendar, z as CalendarManager, U as ChineseCalendar, o as DateFormatter, Z as Duration, Q as DurationPlugin, r as EN_LOCALE, i as ES_LOCALE, R as GregorianCalendar, H as HebrewCalendar, V as IslamicCalendar, W as JapaneseCalendar, L as LOCALES_COUNT, a as LocaleManager, K as PluginManager, Y as RelativeTimePlugin, n as TemporalAdapter, s as TimeGuard, re as advancedFormatPlugin, B as calendarManager, ne as durationPlugin, I as getAvailableLocales, te as registerAllLocales, X as relativeTimePlugin, ie as timeGuard, ae as version };