From a903c815f4cb5452d3da2cb64f2ac9c478384a73 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 11 Dec 2024 10:24:08 -0800 Subject: [PATCH 01/15] CLDR-18128 Define dimensions of options, enumerate option combos, for core test set / kernel --- .../cldr/tool/GenerateDateTimeTestData.java | 303 ++++++++++++++++++ 1 file changed, 303 insertions(+) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index 2e6489df238..a4787afa224 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -683,6 +683,309 @@ private static Collection> generateAllTestCases() { return result; } + + enum DateStyle { + SHORT, + MEDIUM, + LONG, + FULL + } + + enum TimeStyle { + SHORT, + MEDIUM, + LONG, + FULL + } + + enum SemanticSkeletonLength { + SHORT, + MEDIUM, + LONG + } + + enum SemanticSkeleton { + YMDE, + MDTZ, + M, + T, + Z + } + + enum HourCycle { + H12, + H23 + } + + enum YearStyle { + AUTO, + WITH_ERA, + } + + enum ZoneStyle { + SPECIFIC, + GENERIC, + LOCATION, + OFFSET, + } + + + /** + * A struct to contain combinations of datetime fields & styles, mainly to allow an enumeration + * of combinations of values for these fields that yields a similarly thorough coverage of + * the test space without having to compute the full Cartesian product of all values of all + * dimensions possible. + */ + class FieldStyleCombo { + SemanticSkeleton semanticSkeleton; + SemanticSkeletonLength semanticSkeletonLength; + DateStyle dateStyle; + TimeStyle timeStyle; + HourCycle hourCycle; + ZoneStyle zoneStyle; + YearStyle yearStyle; + } + + + /** + * A struct to contain the data to be used to generate combinations of datetime fields & styles + * and whether to combine (obtain the Cartesian product of) them by other dimensions + */ + class FieldStyleComboInput { + FieldStyleCombo fieldStyleCombo; + boolean shouldMultiplyByTimeZone; + boolean shouldMultiplyByDateTime; + } + + ImmutableSet getFieldStyleComboInputs() { + ImmutableSet.Builder builder = ImmutableSet.builder(); + + FieldStyleComboInput elem; + + // 1 (Row 2) + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo.timeStyle = TimeStyle.SHORT; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + // 2 (Row 3) + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.dateStyle = DateStyle.MEDIUM; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + // 3 + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.dateStyle = DateStyle.FULL; + elem.fieldStyleCombo.timeStyle = TimeStyle.SHORT; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + // 4 + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.dateStyle = DateStyle.SHORT; + elem.fieldStyleCombo.timeStyle = TimeStyle.FULL; + elem.shouldMultiplyByTimeZone = true; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + // 5 (Row 6) + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.YMDE; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.YMDE; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.MEDIUM; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.YMDE; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.YMDE; + elem.fieldStyleCombo.yearStyle = YearStyle.WITH_ERA; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.YMDE; + elem.fieldStyleCombo.yearStyle = YearStyle.WITH_ERA; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.MEDIUM; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + // 10 (Row 11) + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.YMDE; + elem.fieldStyleCombo.yearStyle = YearStyle.WITH_ERA; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.zoneStyle = ZoneStyle.SPECIFIC; + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.Z; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.zoneStyle = ZoneStyle.LOCATION; + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.Z; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.zoneStyle = ZoneStyle.GENERIC; + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.Z; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.zoneStyle = ZoneStyle.OFFSET; + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.Z; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + // 15 (Row 16) + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.MDTZ; + elem.fieldStyleCombo.zoneStyle = ZoneStyle.SPECIFIC; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.MDTZ; + elem.fieldStyleCombo.zoneStyle = ZoneStyle.SPECIFIC; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.MDTZ; + elem.fieldStyleCombo.zoneStyle = ZoneStyle.LOCATION; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.MDTZ; + elem.fieldStyleCombo.zoneStyle = ZoneStyle.LOCATION; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.MDTZ; + elem.fieldStyleCombo.zoneStyle = ZoneStyle.GENERIC; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + // 20 (Row 21) + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.MDTZ; + elem.fieldStyleCombo.zoneStyle = ZoneStyle.GENERIC; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.MDTZ; + elem.fieldStyleCombo.zoneStyle = ZoneStyle.OFFSET; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.MDTZ; + elem.fieldStyleCombo.zoneStyle = ZoneStyle.OFFSET; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByTimeZone = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.M; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.T; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + // 25 (Row 26) + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.T; + elem.fieldStyleCombo.hourCycle = HourCycle.H12; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.T; + elem.fieldStyleCombo.hourCycle = HourCycle.H12; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.MEDIUM; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.T; + elem.fieldStyleCombo.hourCycle = HourCycle.H12; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + // 28 (Row 29) + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.T; + elem.fieldStyleCombo.hourCycle = HourCycle.H23; + elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.LONG; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + return builder.build(); + } + + public static void main(String[] args) throws IOException { try (TempPrintWriter pw = TempPrintWriter.openUTF8Writer( From b5f69a8b5999f70fd8cc5898bb6d2fa46f13b6fe Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 11 Dec 2024 15:21:31 -0800 Subject: [PATCH 02/15] CLDR-18128 Add method to generate structured version of each test case --- .../cldr/tool/GenerateDateTimeTestData.java | 95 ++++++++++++++++++- 1 file changed, 91 insertions(+), 4 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index a4787afa224..6b034378010 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -5,7 +5,13 @@ import com.google.common.collect.ImmutableSet; import com.google.gson.Gson; import com.google.gson.GsonBuilder; +import com.ibm.icu.impl.Pair; import com.ibm.icu.text.SimpleDateFormat; +import com.ibm.icu.util.BuddhistCalendar; +import com.ibm.icu.util.Calendar; +import com.ibm.icu.util.GregorianCalendar; +import com.ibm.icu.util.IslamicCalendar; +import com.ibm.icu.util.JapaneseCalendar; import com.ibm.icu.util.TimeZone; import com.ibm.icu.util.ULocale; import java.io.IOException; @@ -736,7 +742,7 @@ enum ZoneStyle { * the test space without having to compute the full Cartesian product of all values of all * dimensions possible. */ - class FieldStyleCombo { + static class FieldStyleCombo { SemanticSkeleton semanticSkeleton; SemanticSkeletonLength semanticSkeletonLength; DateStyle dateStyle; @@ -746,18 +752,17 @@ class FieldStyleCombo { YearStyle yearStyle; } - /** * A struct to contain the data to be used to generate combinations of datetime fields & styles * and whether to combine (obtain the Cartesian product of) them by other dimensions */ - class FieldStyleComboInput { + static class FieldStyleComboInput { FieldStyleCombo fieldStyleCombo; boolean shouldMultiplyByTimeZone; boolean shouldMultiplyByDateTime; } - ImmutableSet getFieldStyleComboInputs() { + private static ImmutableSet getFieldStyleComboInputs() { ImmutableSet.Builder builder = ImmutableSet.builder(); FieldStyleComboInput elem; @@ -985,6 +990,88 @@ ImmutableSet getFieldStyleComboInputs() { return builder.build(); } + static class FieldStyleComboWithTZAndDateTime { + FieldStyleCombo fieldStyleCombo; + LocalDateTime dateTime; + TimeZone timeZone; + } + + static class TestCase { + ULocale locale; + Calendar calendar; + FieldStyleComboWithTZAndDateTime fieldStyleComboWithTZAndDateTime; + } + + public static ImmutableSet getKernelTestCases() { + + // more manually defined inputs + + List> LOCALE_CALENDAR_PAIRS = List.of( + Pair.of(ULocale.ENGLISH, GregorianCalendar.getInstance()), + Pair.of(ULocale.forLanguageTag("ar-SA"), IslamicCalendar.getInstance()), + Pair.of(ULocale.forLanguageTag("th-TH"), BuddhistCalendar.getInstance()), + Pair.of(ULocale.forLanguageTag("ja-JP"), JapaneseCalendar.getInstance()) + ); + + List DATE_TIMES = List.of( + LocalDateTime.of(2024, 7, 1, 8, 50, 7), + LocalDateTime.of(2000, 1, 1, 0, 0, 0), + LocalDateTime.of(2014, 7, 15, 12, 0, 0) + ); + + // An extra time zone that should be added dynamically is the default for the locale + // visited during the iteration over locales + List STATIC_TIME_ZONES = List.of( + TimeZone.GMT_ZONE, + TimeZone.getTimeZone("Australia/Adelaide") + ); + + // setup of return value + + ImmutableSet.Builder builder = ImmutableSet.builder(); + + // iteration to add to return value + + for (Pair localeCalendarPair : LOCALE_CALENDAR_PAIRS) { + ULocale locale = localeCalendarPair.first; + Calendar calendar = localeCalendarPair.second; + + for (FieldStyleComboInput input : getFieldStyleComboInputs()) { + assert input.shouldMultiplyByDateTime || input.shouldMultiplyByTimeZone; + + FieldStyleCombo fieldStyleCombo = input.fieldStyleCombo; + + List dateTimeIterationColl = List.of(); + if (input.shouldMultiplyByDateTime) { + dateTimeIterationColl = DATE_TIMES; + } + + List timeZoneIterationColl = List.of(); + if (input.shouldMultiplyByTimeZone) { + timeZoneIterationColl = STATIC_TIME_ZONES; + // TODO: add a TimeZone from the region of the locale to the list of time zones to iterate over + } + + for (LocalDateTime localDateTime : dateTimeIterationColl) { + for (TimeZone timeZone : timeZoneIterationColl) { + FieldStyleComboWithTZAndDateTime fieldStyleComboWithTZAndDateTime = new FieldStyleComboWithTZAndDateTime(); + fieldStyleComboWithTZAndDateTime.fieldStyleCombo = fieldStyleCombo; + fieldStyleComboWithTZAndDateTime.dateTime = localDateTime; + fieldStyleComboWithTZAndDateTime.timeZone = timeZone; + + TestCase testCase = new TestCase(); + testCase.locale = locale; + testCase.calendar = calendar; + testCase.fieldStyleComboWithTZAndDateTime = fieldStyleComboWithTZAndDateTime; + + builder.add(testCase); + } + } + } + } + + return builder.build(); + } public static void main(String[] args) throws IOException { try (TempPrintWriter pw = From 659b06db79833eff14a4fad6b0331b40f74ecb38 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Fri, 10 Jan 2025 17:23:26 -0800 Subject: [PATCH 03/15] CLDR-18128 Refactor helper method that returns the expected formatted date/time as a String --- .../cldr/tool/GenerateDateTimeTestData.java | 355 ++++++++++++------ 1 file changed, 239 insertions(+), 116 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index 6b034378010..59133f8236f 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -23,6 +23,7 @@ import java.time.ZoneOffset; import java.time.ZonedDateTime; import java.util.ArrayList; +import java.util.Arrays; import java.util.Collection; import java.util.HashSet; import java.util.LinkedList; @@ -30,6 +31,7 @@ import java.util.Map; import java.util.Optional; import java.util.Set; +import java.util.stream.Collectors; import org.unicode.cldr.util.CLDRConfig; import org.unicode.cldr.util.CLDRFile; import org.unicode.cldr.util.CLDRFile.DraftStatus; @@ -67,8 +69,20 @@ public class GenerateDateTimeTestData { *

standard = do not insert the word "at". (ex: in `en`, there may or may not be a comma * instead to separate) */ - private static final Set CLDR_DATE_TIME_FORMAT_TYPES = - ImmutableSet.of("standard", "atTime"); + enum DateTimeFormatType { + STANDARD("standard"), + AT_TIME("atTime"); + + public final String label; + + String getLabel() { + return this.label; + } + + DateTimeFormatType(String label) { + this.label = label; + } + } private static final ImmutableSet NUMBERING_SYSTEMS = ImmutableSet.of("latn", "arab", "beng"); @@ -490,77 +504,125 @@ private static String getTimeLength(Map optionsMap) { return length; } - /** - * Take a map of test case inputs, compute the formatted datetime, and return a map that - * includes the formatted datetime as well as all of the test case inputs. - * - * @param icuServiceBuilder - * @param localeCldrFile - * @param options - * @param optionsBuilder - * @param zdt - * @param calendar - * @param dateFormatter - * @param timeFormatter - * @param dateLength - * @return - */ - private static List> getTestCasesForZonedDateTime( - ICUServiceBuilder icuServiceBuilder, - CLDRFile localeCldrFile, - ImmutableMap options, - ImmutableMap.Builder optionsBuilder, - ZonedDateTime zdt, - String calendar, - SimpleDateFormat dateFormatter, - SimpleDateFormat timeFormatter, - String dateLength) { + private static String getExpectedStringForTestCase( + ICUServiceBuilder icuServiceBuilder, + CLDRFile localeCldrFile, + String calendar, + TimeZone icuTimeZone, + ZonedDateTime zdt, + String timeLength, + String dateLength, + String dateTimeGluePatternFormatType + ) { String formattedDateTime; + SimpleDateFormat timeFormatter = null; + SimpleDateFormat dateFormatter = null; + + // properly initialize the time formatter - // "input" = the ISO 18601 UTC time zone formatted string of the zoned date time - optionsBuilder.put("input", zdt.toString()); + if (timeLength != null) { + timeFormatter = + localeCldrFile.getTimeFormat( + calendar, timeLength, icuServiceBuilder); + assert timeFormatter != null; + timeFormatter.setTimeZone(icuTimeZone); + } + + // properly initialize the date formatter - // After all the options configuration, finally construct the formatted DateTime - if (dateFormatter == null) { + if (dateLength != null) { + dateFormatter = + localeCldrFile.getDateFormat( + calendar, dateLength, icuServiceBuilder); + assert dateFormatter != null; + dateFormatter.setTimeZone(icuTimeZone); + } + + // compute the formatted date time string + + if (dateLength == null) { formattedDateTime = timeFormatter.format(zdt); - // Reuse and update the optionsBuilder to insert the expected value according to - // the result of the CLDR formatter - optionsBuilder.put("expected", formattedDateTime); - return ImmutableList.of(optionsBuilder.buildKeepingLast()); - } else if (timeFormatter == null) { + } else if (timeLength == null) { formattedDateTime = dateFormatter.format(zdt); - // Reuse and update the optionsBuilder to insert the expected value according to - // the result of the CLDR formatter - optionsBuilder.put("expected", formattedDateTime); - return ImmutableList.of(optionsBuilder.buildKeepingLast()); } else { + assert(dateTimeGluePatternFormatType != null); String formattedDate = dateFormatter.format(zdt); String formattedTime = timeFormatter.format(zdt); - ImmutableList.Builder resultBuilder = ImmutableList.builder(); + formattedDateTime = + localeCldrFile.glueDateTimeFormat( + formattedDate, + formattedTime, + calendar, + dateLength, + dateTimeGluePatternFormatType, + icuServiceBuilder); + } - // when we have date and time formatting information, then we also need to use - // the date time "glue pattern" aka dateTimeFormatType, which can vary over - // different values (ex: "standard", "atTime"), that indicates the style of pattern - // that is used to combine the date and time formatted values together. - for (String dateTimeGluePatternFormatType : CLDR_DATE_TIME_FORMAT_TYPES) { - formattedDateTime = - localeCldrFile.glueDateTimeFormat( - formattedDate, - formattedTime, - calendar, - dateLength, - dateTimeGluePatternFormatType, - icuServiceBuilder); - optionsBuilder.put("dateTimeFormatType", dateTimeGluePatternFormatType); + return formattedDateTime; + } + + + /** + * Calls into getTestCasesForZonedDateTime() but manages the higher level logic that + * dictates that when we have both a date length and time length, we generate the dateTime + * for all glue pattern types available. When there is only a date length _or_ time length, + * then we only produce 1 formatted string + */ + private static Collection> getTestCaseSubListFromDateTimeLengths( + ImmutableMap.Builder optionsBuilder, + ICUServiceBuilder icuServiceBuilder, + CLDRFile localeCldrFile, + String calendar, + TimeZone icuTimeZone, + ZonedDateTime zdt, + String timeLength, + String dateLength + ) { + List> result = new LinkedList<>(); + + if (dateLength != null && timeLength != null) { + ImmutableList.Builder resultBuilder = ImmutableList.builder(); + for (String dateTimeGluePatternFormatType : Arrays.stream(DateTimeFormatType.values()) + .map(DateTimeFormatType::getLabel).collect(Collectors.toList())) { + String formattedDateTime = + getExpectedStringForTestCase( + icuServiceBuilder, + localeCldrFile, + calendar, + icuTimeZone, + zdt, + timeLength, + dateLength, + dateTimeGluePatternFormatType); // Reuse and update the optionsBuilder to insert the expected value according to // the result of the CLDR formatter + // "input" = the ISO 18601 UTC time zone formatted string of the zoned date time + optionsBuilder.put("input", zdt.toString()); + optionsBuilder.put("dateTimeFormatType", dateTimeGluePatternFormatType); optionsBuilder.put("expected", formattedDateTime); resultBuilder.add(optionsBuilder.buildKeepingLast()); } - return resultBuilder.build(); + } else { + String formattedDateTime = + getExpectedStringForTestCase( + icuServiceBuilder, + localeCldrFile, + calendar, + icuTimeZone, + zdt, + timeLength, + dateLength, + null); // dateTime glue pattern is unneeded + // Reuse and update the optionsBuilder to insert the expected value according to + // the result of the CLDR formatter + // "input" = the ISO 18601 UTC time zone formatted string of the zoned date time + optionsBuilder.put("input", zdt.toString()); + optionsBuilder.put("expected", formattedDateTime); + return ImmutableList.of(optionsBuilder.buildKeepingLast()); } + } private static Collection> generateAllTestCases() { @@ -629,20 +691,7 @@ private static Collection> generateAllTestCases() { TimeZone icuTimeZone = TimeZone.getTimeZone(timeZone); String dateLength = getDateLength(options); - SimpleDateFormat dateFormatter = - localeCldrFile.getDateFormat( - calendar, dateLength, icuServiceBuilder); - if (dateFormatter != null) { - dateFormatter.setTimeZone(icuTimeZone); - } - String timeLength = getTimeLength(options); - SimpleDateFormat timeFormatter = - localeCldrFile.getTimeFormat( - calendar, timeLength, icuServiceBuilder); - if (timeFormatter != null) { - timeFormatter.setTimeZone(icuTimeZone); - } // iterate over all dates and format the date time @@ -650,17 +699,18 @@ private static Collection> generateAllTestCases() { for (ZonedDateTime zdt : JAVA_TIME_ZONED_DATE_TIMES) { ZonedDateTime zdtNewTz = zdt.withZoneSameInstant(zoneId); - List> testCases = - getTestCasesForZonedDateTime( - icuServiceBuilder, - localeCldrFile, - options, - optionsBuilder, - zdtNewTz, - calendar, - dateFormatter, - timeFormatter, - dateLength); + + Collection> testCases = + getTestCaseSubListFromDateTimeLengths( + optionsBuilder, + icuServiceBuilder, + localeCldrFile, + calendar, + icuTimeZone, + zdtNewTz, + timeLength, + dateLength); + result.addAll(testCases); } @@ -668,17 +718,18 @@ private static Collection> generateAllTestCases() { ZonedDateTime zdt = getZonedDateTimeFromTemporalDateInput(temporalDateInfo); ZonedDateTime zdtNewTz = zdt.withZoneSameInstant(zoneId); - List> testCases = - getTestCasesForZonedDateTime( - icuServiceBuilder, - localeCldrFile, - options, - optionsBuilder, - zdtNewTz, - calendar, - dateFormatter, - timeFormatter, - dateLength); + + Collection> testCases = + getTestCaseSubListFromDateTimeLengths( + optionsBuilder, + icuServiceBuilder, + localeCldrFile, + calendar, + icuTimeZone, + zdtNewTz, + timeLength, + dateLength); + result.addAll(testCases); } } @@ -691,17 +742,29 @@ private static Collection> generateAllTestCases() { enum DateStyle { - SHORT, - MEDIUM, - LONG, - FULL + SHORT("short"), + MEDIUM("medium"), + LONG("long"), + FULL("full"); + + public final String label; + + DateStyle(String label) { + this.label = label; + } } enum TimeStyle { - SHORT, - MEDIUM, - LONG, - FULL + SHORT("short"), + MEDIUM("medium"), + LONG("long"), + FULL("full"); + + public final String label; + + TimeStyle(String label) { + this.label = label; + } } enum SemanticSkeletonLength { @@ -990,16 +1053,18 @@ private static ImmutableSet getFieldStyleComboInputs() { return builder.build(); } - static class FieldStyleComboWithTZAndDateTime { + static class TestCaseInput { FieldStyleCombo fieldStyleCombo; LocalDateTime dateTime; TimeZone timeZone; + ULocale locale; + Calendar calendar; + DateTimeFormatType dateTimeFormatType; } static class TestCase { - ULocale locale; - Calendar calendar; - FieldStyleComboWithTZAndDateTime fieldStyleComboWithTZAndDateTime; + TestCaseInput testCaseInput; + String expected; } public static ImmutableSet getKernelTestCases() { @@ -1014,18 +1079,23 @@ public static ImmutableSet getKernelTestCases() { ); List DATE_TIMES = List.of( - LocalDateTime.of(2024, 7, 1, 8, 50, 7), LocalDateTime.of(2000, 1, 1, 0, 0, 0), + LocalDateTime.of(2024, 7, 1, 8, 50, 7), + // Ramadan in Summer at 12:00 noon in the year 2014 LocalDateTime.of(2014, 7, 15, 12, 0, 0) ); - // An extra time zone that should be added dynamically is the default for the locale - // visited during the iteration over locales + List DATE_TIME_ONE_ONLY = List.of(DATE_TIMES.get(0)); + + // TODO: add a 3rd time zone dynamically, which is the default time zone for the current + // locale in question when iterating over all locales List STATIC_TIME_ZONES = List.of( TimeZone.GMT_ZONE, TimeZone.getTimeZone("Australia/Adelaide") ); + List STATIC_TIME_ZONE_ONE_ONLY = List.of(STATIC_TIME_ZONES.get(0)); + // setup of return value ImmutableSet.Builder builder = ImmutableSet.builder(); @@ -1036,17 +1106,31 @@ public static ImmutableSet getKernelTestCases() { ULocale locale = localeCalendarPair.first; Calendar calendar = localeCalendarPair.second; + // get the formatted version of the locale with underscores instead of BCP 47 dashes + // since this is what the CLDRFile constructor expects + String localeStr = locale.getName(); + + CLDRFile localeCldrFile = getCLDRFile(localeStr).orElse(null); + + if (localeCldrFile == null) { + continue; + } + + ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); + icuServiceBuilder.clearCache(); + icuServiceBuilder.setCldrFile(localeCldrFile); + for (FieldStyleComboInput input : getFieldStyleComboInputs()) { assert input.shouldMultiplyByDateTime || input.shouldMultiplyByTimeZone; FieldStyleCombo fieldStyleCombo = input.fieldStyleCombo; - List dateTimeIterationColl = List.of(); + List dateTimeIterationColl = DATE_TIME_ONE_ONLY; if (input.shouldMultiplyByDateTime) { dateTimeIterationColl = DATE_TIMES; } - List timeZoneIterationColl = List.of(); + List timeZoneIterationColl = STATIC_TIME_ZONE_ONE_ONLY; if (input.shouldMultiplyByTimeZone) { timeZoneIterationColl = STATIC_TIME_ZONES; // TODO: add a TimeZone from the region of the locale to the list of time zones to iterate over @@ -1054,15 +1138,14 @@ public static ImmutableSet getKernelTestCases() { for (LocalDateTime localDateTime : dateTimeIterationColl) { for (TimeZone timeZone : timeZoneIterationColl) { - FieldStyleComboWithTZAndDateTime fieldStyleComboWithTZAndDateTime = new FieldStyleComboWithTZAndDateTime(); - fieldStyleComboWithTZAndDateTime.fieldStyleCombo = fieldStyleCombo; - fieldStyleComboWithTZAndDateTime.dateTime = localDateTime; - fieldStyleComboWithTZAndDateTime.timeZone = timeZone; + TestCaseInput testCaseInput = new TestCaseInput(); + testCaseInput.fieldStyleCombo = fieldStyleCombo; + testCaseInput.dateTime = localDateTime; + testCaseInput.timeZone = timeZone; + testCaseInput.locale = locale; + testCaseInput.calendar = calendar; - TestCase testCase = new TestCase(); - testCase.locale = locale; - testCase.calendar = calendar; - testCase.fieldStyleComboWithTZAndDateTime = fieldStyleComboWithTZAndDateTime; + TestCase testCase = computeTestCase(localeCldrFile, testCaseInput); builder.add(testCase); } @@ -1073,6 +1156,46 @@ public static ImmutableSet getKernelTestCases() { return builder.build(); } + private static TestCase computeTestCase( + CLDRFile localeCldrFile, + TestCaseInput testCaseInput + + + ) { + + if (testCaseInput.fieldStyleCombo.semanticSkeleton == null) { + Map fieldStyleComboMap = convertTestCaseInputToComboMap(testCaseInput); + + } else { + // TODO: implement logic for converting sematic skeleton -> string concatenation of + // skeleton-per-field for all fields -> use datetimepatterngenerator to convert + // skeleton string into pattern string + + // TODO: implement me! + assert false; + } + + + + + + // TODO: implement me! + assert false; + + + + // return 57; + return null; + } + + private static Map convertTestCaseInputToComboMap(TestCaseInput testCaseInput) { + // TODO: implement me! + assert false; + + return null; + } + + public static void main(String[] args) throws IOException { try (TempPrintWriter pw = TempPrintWriter.openUTF8Writer( From bd1e59d270c0eb4522205218ce5f8689c0427fbd Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 15 Jan 2025 15:15:04 -0800 Subject: [PATCH 04/15] CLDR-18128 Add helper to convert TestCaseInput to TestCase for non-skeleton --- .../cldr/tool/GenerateDateTimeTestData.java | 57 ++++++++++++++----- 1 file changed, 44 insertions(+), 13 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index 59133f8236f..142c1cb848f 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -564,7 +564,7 @@ private static String getExpectedStringForTestCase( /** - * Calls into getTestCasesForZonedDateTime() but manages the higher level logic that + * Calls into getExpectedStringForTestCase() but manages the higher level logic that * dictates that when we have both a date length and time length, we generate the dateTime * for all glue pattern types available. When there is only a date length _or_ time length, * then we only produce 1 formatted string @@ -749,6 +749,10 @@ enum DateStyle { public final String label; + String getLabel() { + return this.label; + } + DateStyle(String label) { this.label = label; } @@ -762,6 +766,10 @@ enum TimeStyle { public final String label; + String getLabel() { + return this.label; + } + TimeStyle(String label) { this.label = label; } @@ -1156,16 +1164,47 @@ public static ImmutableSet getKernelTestCases() { return builder.build(); } + private static TestCase convertTestCaseInputToComboMap(TestCaseInput testCaseInput) { + String calendarStr = testCaseInput.calendar.getType(); + String dateLength = testCaseInput.fieldStyleCombo.dateStyle.getLabel(); + String timeLength = testCaseInput.fieldStyleCombo.dateStyle.getLabel(); + LocalDateTime localDt = testCaseInput.dateTime; + TimeZone icuTimeZone = testCaseInput.timeZone; + ZoneId zoneId = ZoneId.of(icuTimeZone.getID()); + ZonedDateTime zdt = ZonedDateTime.of(localDt, zoneId); + String dateTimeGluePatternFormatType = testCaseInput.dateTimeFormatType.getLabel(); + + ULocale locale = testCaseInput.locale; + CLDRFile localeCldrFile = getCLDRFile(locale.toString()).orElse(null); + ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); + icuServiceBuilder.clearCache(); + icuServiceBuilder.setCldrFile(localeCldrFile); + + String expected = getExpectedStringForTestCase( + icuServiceBuilder, + localeCldrFile, + calendarStr, + icuTimeZone, + zdt, + timeLength, + dateLength, + dateTimeGluePatternFormatType + ); + + TestCase result = new TestCase(); + result.testCaseInput = testCaseInput; + result.expected = expected; + + return result; + } + private static TestCase computeTestCase( CLDRFile localeCldrFile, TestCaseInput testCaseInput - - ) { if (testCaseInput.fieldStyleCombo.semanticSkeleton == null) { - Map fieldStyleComboMap = convertTestCaseInputToComboMap(testCaseInput); - + return convertTestCaseInputToComboMap(testCaseInput); } else { // TODO: implement logic for converting sematic skeleton -> string concatenation of // skeleton-per-field for all fields -> use datetimepatterngenerator to convert @@ -1188,14 +1227,6 @@ private static TestCase computeTestCase( return null; } - private static Map convertTestCaseInputToComboMap(TestCaseInput testCaseInput) { - // TODO: implement me! - assert false; - - return null; - } - - public static void main(String[] args) throws IOException { try (TempPrintWriter pw = TempPrintWriter.openUTF8Writer( From 618b18efab359c7c70f9ddecb92c3212cf6f93a3 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 15 Jan 2025 17:12:27 -0800 Subject: [PATCH 05/15] CLDR-18128 Add beginning of semantic skeleton converter function --- .../cldr/tool/GenerateDateTimeTestData.java | 180 ++++++++++++++++-- .../java/org/unicode/cldr/util/CLDRFile.java | 26 +++ 2 files changed, 193 insertions(+), 13 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index 142c1cb848f..afc6f8a68f9 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -776,9 +776,19 @@ String getLabel() { } enum SemanticSkeletonLength { - SHORT, - MEDIUM, - LONG + SHORT("short"), + MEDIUM("medium"), + LONG("long"); + + public final String label; + + String getLabel() { + return this.label; + } + + SemanticSkeletonLength(String label) { + this.label = label; + } } enum SemanticSkeleton { @@ -786,16 +796,46 @@ enum SemanticSkeleton { MDTZ, M, T, - Z + Z; + + public boolean hasYear() { + return this == SemanticSkeleton.YMDE; + } + + public boolean hasMonth() { + return (this == SemanticSkeleton.YMDE || this == SemanticSkeleton.MDTZ || this == SemanticSkeleton.M); + } + + public boolean hasDay() { + return (this == SemanticSkeleton.YMDE || this == SemanticSkeleton.MDTZ); + } + + public boolean hasWeekday() { + return this == SemanticSkeleton.YMDE; + } + + public boolean hasTime() { + return (this == SemanticSkeleton.MDTZ || this == SemanticSkeleton.T); + } + + public boolean hasZone() { + return (this == SemanticSkeleton.MDTZ || this == SemanticSkeleton.Z); + } + + public boolean isStandalone() { + return (this == SemanticSkeleton.M || this == SemanticSkeleton.T || this == SemanticSkeleton.Z); + } } enum HourCycle { + AUTO, H12, H23 } enum YearStyle { AUTO, + FULL, WITH_ERA, } @@ -806,6 +846,8 @@ enum ZoneStyle { OFFSET, } + // private class SemanticSkeletonFieldSet() + /** * A struct to contain combinations of datetime fields & styles, mainly to allow an enumeration @@ -1153,7 +1195,7 @@ public static ImmutableSet getKernelTestCases() { testCaseInput.locale = locale; testCaseInput.calendar = calendar; - TestCase testCase = computeTestCase(localeCldrFile, testCaseInput); + TestCase testCase = computeTestCase(icuServiceBuilder, localeCldrFile, testCaseInput); builder.add(testCase); } @@ -1164,7 +1206,121 @@ public static ImmutableSet getKernelTestCases() { return builder.build(); } - private static TestCase convertTestCaseInputToComboMap(TestCaseInput testCaseInput) { + private static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuServiceBuilder, + CLDRFile localeCldrFile, FieldStyleCombo fieldStyleCombo, String calendarStr) { + SemanticSkeleton skeleton = fieldStyleCombo.semanticSkeleton; + StringBuilder sb = new StringBuilder(); + + // Year + if (skeleton.hasYear()) { + // TODO + } + + // Month + if (skeleton.hasMonth()) { + if (skeleton.isStandalone()) { + switch (fieldStyleCombo.semanticSkeletonLength) { + case LONG: + sb.append("LLLL"); + break; + case MEDIUM: + sb.append("LLL"); + break; + case SHORT: + sb.append("L"); + break; + default: + break; + } + } else { + String skeletonLength = fieldStyleCombo.semanticSkeletonLength.getLabel(); + String dateTimeSkeleton = localeCldrFile.getDateSkeleton(calendarStr, skeletonLength); + } + } + + // Day + if (skeleton.hasDay()) { + // TODO + } + + if (skeleton.hasWeekday()) { + switch (fieldStyleCombo.semanticSkeletonLength) { + case LONG: + sb.append("EEEE"); + break; + case MEDIUM: + sb.append("EEE"); + break; + case SHORT: + if (skeleton.isStandalone()) { + sb.append("EEEEE"); + } else { + sb.append("EEE"); + } + break; + default: + break; + } + } + + if (skeleton.hasTime()) { + // H M S + switch (fieldStyleCombo.hourCycle) { + case AUTO: + sb.append("C"); + break; + case H12: + sb.append("h"); + break; + case H23: + sb.append("H"); + break; + default: + break; + } + sb.append("m"); + sb.append("s"); + } + if (skeleton.hasZone()) { + switch (fieldStyleCombo.zoneStyle) { + case GENERIC: + if (skeleton.isStandalone()) { + if (fieldStyleCombo.semanticSkeletonLength == SemanticSkeletonLength.SHORT) { + sb.append("v"); + } else { + sb.append("vvvv"); + } + } else { + sb.append("v"); + } + break; + case SPECIFIC: + if (skeleton.isStandalone()) { + if (fieldStyleCombo.semanticSkeletonLength == SemanticSkeletonLength.SHORT) { + sb.append("z"); + } else { + sb.append("zzzz"); + } + } else { + sb.append("z"); + } + break; + case LOCATION: + sb.append("VVVV"); + break; + case OFFSET: + sb.append("O"); + break; + default: + break; + } + } + + return sb.toString(); + } + + private static TestCase convertTestCaseInputToComboMap(ICUServiceBuilder icuServiceBuilder, + CLDRFile localeCldrFile, TestCaseInput testCaseInput) { String calendarStr = testCaseInput.calendar.getType(); String dateLength = testCaseInput.fieldStyleCombo.dateStyle.getLabel(); String timeLength = testCaseInput.fieldStyleCombo.dateStyle.getLabel(); @@ -1174,12 +1330,6 @@ private static TestCase convertTestCaseInputToComboMap(TestCaseInput testCaseInp ZonedDateTime zdt = ZonedDateTime.of(localDt, zoneId); String dateTimeGluePatternFormatType = testCaseInput.dateTimeFormatType.getLabel(); - ULocale locale = testCaseInput.locale; - CLDRFile localeCldrFile = getCLDRFile(locale.toString()).orElse(null); - ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); - icuServiceBuilder.clearCache(); - icuServiceBuilder.setCldrFile(localeCldrFile); - String expected = getExpectedStringForTestCase( icuServiceBuilder, localeCldrFile, @@ -1199,16 +1349,20 @@ private static TestCase convertTestCaseInputToComboMap(TestCaseInput testCaseInp } private static TestCase computeTestCase( + ICUServiceBuilder icuServiceBuilder, CLDRFile localeCldrFile, TestCaseInput testCaseInput ) { if (testCaseInput.fieldStyleCombo.semanticSkeleton == null) { - return convertTestCaseInputToComboMap(testCaseInput); + return convertTestCaseInputToComboMap(icuServiceBuilder, localeCldrFile, testCaseInput); } else { // TODO: implement logic for converting sematic skeleton -> string concatenation of // skeleton-per-field for all fields -> use datetimepatterngenerator to convert // skeleton string into pattern string + String calendarStr = testCaseInput.calendar.getType(); + String skeleton = computeSkeletonFromSemanticSkeleton(icuServiceBuilder, localeCldrFile, + testCaseInput.fieldStyleCombo, calendarStr); // TODO: implement me! assert false; diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java b/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java index 2739487e897..c9dd992ad3b 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java @@ -1281,6 +1281,24 @@ private String getDateFormatXpath(String calendar, String length) { return String.format(formatPattern, calendar, length); } + /** + * Create xpaths for DateFormat that look like + * + *

+     * //ldml/dates/calendars/calendar[@type="*"]/dateFormats/dateFormatLength[@type="*"]/dateFormat[@type="standard"]/skeleton[@type="standard"]
+     * //ldml/dates/calendars/calendar[@type="*"]/dateFormats/dateFormatLength[@type="*"]/dateFormat[@type="standard"]/skeleton[@type="standard"][@numbers="*"]
+     * 
+ * + * @param calendar Calendar system identifier + * @param length full, long, medium, short. "*" is a wildcard selector for XPath + * @return + */ + private String getDateSkeletonXpath(String calendar, String length) { + String formatPattern = + "//ldml/dates/calendars/calendar[@type=\"%s\"]/dateFormats/dateFormatLength[@type=\"%s\"]/dateFormat[@type=\"standard\"]/datetimeSkeleton[@type=\"standard\"]"; + return String.format(formatPattern, calendar, length); + } + /** * Create xpaths for TimeFormat that look like * @@ -1381,6 +1399,14 @@ public String glueDateTimeFormatWithGluePattern( return MessageFormat.format(gluePatternWithoutQuotes, (Object[]) new String[] {time, date}); } + public String getDateSkeleton( + String calendar, String length) { + String dateTimeSkeletonXPath = // Get standard dateTime skeleton for same calendar & length + // as this dateTimePattern + this.getDateSkeletonXpath(calendar, length); + return this.getWinningValue(dateTimeSkeletonXPath); + } + /** * @see com.ibm.icu.util.Freezable#isFrozen() */ From 82a0023255d73f528658af62a3f1938914f0e61d Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Thu, 16 Jan 2025 11:50:08 -0800 Subject: [PATCH 06/15] CLDR-18128 Finish logic for semantic skeleton converter --- .../cldr/tool/GenerateDateTimeTestData.java | 31 ++++++++--- .../tool/GenerateDateTimeTestDataTest.java | 54 +++++++++++++++++++ 2 files changed, 79 insertions(+), 6 deletions(-) create mode 100644 tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index afc6f8a68f9..6c6f855180f 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -31,6 +31,8 @@ import java.util.Map; import java.util.Optional; import java.util.Set; +import java.util.regex.Matcher; +import java.util.regex.Pattern; import java.util.stream.Collectors; import org.unicode.cldr.util.CLDRConfig; import org.unicode.cldr.util.CLDRFile; @@ -470,7 +472,7 @@ private static ZonedDateTime getZonedDateTimeFromTemporalDateInput(Map getCLDRFile(String locale) { + public static final Optional getCLDRFile(String locale) { CLDRFile cldrFile = CLDR_FACTORY.make( locale, true, DraftStatus.contributed); // don't include provisional data @@ -1206,14 +1208,30 @@ public static ImmutableSet getKernelTestCases() { return builder.build(); } - private static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuServiceBuilder, + private static final Pattern SKELETON_YEAR_FIELD_PATTERN = Pattern.compile("(G+)?y+"); + + private static final Pattern SKELETON_MONTH_FIELD_PATTERN = Pattern.compile("M+"); + + private static final Pattern SKELETON_DAY_FIELD_PATTERN = Pattern.compile("d+"); + + private static String getFieldFromDateTimeSkeleton(CLDRFile localeCldrFile, FieldStyleCombo fieldStyleCombo, String calendarStr, Pattern fieldPattern) { + String skeletonLength = fieldStyleCombo.semanticSkeletonLength.getLabel(); + String dateTimeSkeleton = localeCldrFile.getDateSkeleton(calendarStr, skeletonLength); + Matcher monthFieldResult = fieldPattern.matcher(dateTimeSkeleton); + assert monthFieldResult.matches(); + String monthField = monthFieldResult.group(1); + return monthField; + } + + public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuServiceBuilder, CLDRFile localeCldrFile, FieldStyleCombo fieldStyleCombo, String calendarStr) { SemanticSkeleton skeleton = fieldStyleCombo.semanticSkeleton; StringBuilder sb = new StringBuilder(); // Year if (skeleton.hasYear()) { - // TODO + return getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, + SKELETON_YEAR_FIELD_PATTERN); } // Month @@ -1233,14 +1251,15 @@ private static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuS break; } } else { - String skeletonLength = fieldStyleCombo.semanticSkeletonLength.getLabel(); - String dateTimeSkeleton = localeCldrFile.getDateSkeleton(calendarStr, skeletonLength); + return getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, + SKELETON_MONTH_FIELD_PATTERN); } } // Day if (skeleton.hasDay()) { - // TODO + return getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, + SKELETON_DAY_FIELD_PATTERN); } if (skeleton.hasWeekday()) { diff --git a/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java new file mode 100644 index 00000000000..daa84bb798b --- /dev/null +++ b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java @@ -0,0 +1,54 @@ +package org.unicode.cldr.tool; + +import static org.junit.jupiter.api.Assertions.assertEquals; +import static org.junit.jupiter.api.Assertions.fail; + +import com.ibm.icu.util.ULocale; +import org.junit.jupiter.api.Test; +import org.unicode.cldr.tool.GenerateDateTimeTestData.FieldStyleCombo; +import org.unicode.cldr.tool.GenerateDateTimeTestData.SemanticSkeleton; +import org.unicode.cldr.tool.GenerateDateTimeTestData.SemanticSkeletonLength; +import org.unicode.cldr.util.CLDRFile; +import org.unicode.cldr.util.ICUServiceBuilder; + +public class GenerateDateTimeTestDataTest { + + @Test + public void testComputeSkeletonFromSemanticSkeleton() { + + Object[][] casesData = { + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "yMMMMd"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "yMMMd"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "yyMd"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "GyMMMMd"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "GyMMMd"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "GGGGGyMd"}, + }; + + for (Object[] caseDatum : casesData) { + String localeTag = (String) caseDatum[0]; + String calendarStr = (String) caseDatum[1]; + SemanticSkeleton semanticSkeleton = (SemanticSkeleton) caseDatum[2]; + SemanticSkeletonLength semanticSkeletonLength = (SemanticSkeletonLength) caseDatum[3]; + String expected = (String) caseDatum[4]; + + ULocale locale = ULocale.forLanguageTag(localeTag); + String localeStr = locale.getName(); + CLDRFile localeCldrFile = GenerateDateTimeTestData.getCLDRFile(localeStr).orElse(null); + assert localeCldrFile != null; + ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); + icuServiceBuilder.clearCache(); + icuServiceBuilder.setCldrFile(localeCldrFile); + + FieldStyleCombo fieldStyleCombo = new FieldStyleCombo(); + fieldStyleCombo.semanticSkeleton = semanticSkeleton; + fieldStyleCombo.semanticSkeletonLength = semanticSkeletonLength; + + String actual = GenerateDateTimeTestData.computeSkeletonFromSemanticSkeleton( + icuServiceBuilder, localeCldrFile, fieldStyleCombo, calendarStr); + + assertEquals(actual, expected); + } + } + +} From 57c295455be9f29d9dab157a93fc8d1342fc9ab1 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Thu, 16 Jan 2025 14:47:31 -0800 Subject: [PATCH 07/15] CLDR-18128 Fix semantic skeleton to skeleton string conversion --- .../cldr/tool/GenerateDateTimeTestData.java | 27 ++++++++++++------- .../java/org/unicode/cldr/util/CLDRFile.java | 6 ++--- .../tool/GenerateDateTimeTestDataTest.java | 14 +++++----- 3 files changed, 27 insertions(+), 20 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index 6c6f855180f..b74e807dfc6 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -1208,7 +1208,7 @@ public static ImmutableSet getKernelTestCases() { return builder.build(); } - private static final Pattern SKELETON_YEAR_FIELD_PATTERN = Pattern.compile("(G+)?y+"); + private static final Pattern SKELETON_YEAR_FIELD_PATTERN = Pattern.compile("G*y+"); private static final Pattern SKELETON_MONTH_FIELD_PATTERN = Pattern.compile("M+"); @@ -1217,10 +1217,16 @@ public static ImmutableSet getKernelTestCases() { private static String getFieldFromDateTimeSkeleton(CLDRFile localeCldrFile, FieldStyleCombo fieldStyleCombo, String calendarStr, Pattern fieldPattern) { String skeletonLength = fieldStyleCombo.semanticSkeletonLength.getLabel(); String dateTimeSkeleton = localeCldrFile.getDateSkeleton(calendarStr, skeletonLength); - Matcher monthFieldResult = fieldPattern.matcher(dateTimeSkeleton); - assert monthFieldResult.matches(); - String monthField = monthFieldResult.group(1); - return monthField; + Matcher fieldMatchResult = fieldPattern.matcher(dateTimeSkeleton); + + if (fieldMatchResult.find()) { + // take the first result, which assumes that there is only one unique place where a match can occur + // otherwise, we would need to get the group count and iterate over each match group + String field = fieldMatchResult.group(); + return field; + } else { + return ""; + } } public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuServiceBuilder, @@ -1230,8 +1236,9 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe // Year if (skeleton.hasYear()) { - return getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, + String yieldField = getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, SKELETON_YEAR_FIELD_PATTERN); + sb.append(yieldField); } // Month @@ -1251,15 +1258,15 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe break; } } else { - return getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, - SKELETON_MONTH_FIELD_PATTERN); + sb.append(getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, + SKELETON_MONTH_FIELD_PATTERN)); } } // Day if (skeleton.hasDay()) { - return getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, - SKELETON_DAY_FIELD_PATTERN); + sb.append(getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, + SKELETON_DAY_FIELD_PATTERN)); } if (skeleton.hasWeekday()) { diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java b/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java index c9dd992ad3b..06a940cb4c3 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java @@ -1285,8 +1285,8 @@ private String getDateFormatXpath(String calendar, String length) { * Create xpaths for DateFormat that look like * *
-     * //ldml/dates/calendars/calendar[@type="*"]/dateFormats/dateFormatLength[@type="*"]/dateFormat[@type="standard"]/skeleton[@type="standard"]
-     * //ldml/dates/calendars/calendar[@type="*"]/dateFormats/dateFormatLength[@type="*"]/dateFormat[@type="standard"]/skeleton[@type="standard"][@numbers="*"]
+     * //ldml/dates/calendars/calendar[@type="*"]/dateFormats/dateFormatLength[@type="*"]/dateFormat[@type="standard"]/datetimeSkeleton[@type="standard"]
+     * //ldml/dates/calendars/calendar[@type="*"]/dateFormats/dateFormatLength[@type="*"]/dateFormat[@type="standard"]/datetimeSkeleton[@type="standard"][@numbers="*"]
      * 
* * @param calendar Calendar system identifier @@ -1295,7 +1295,7 @@ private String getDateFormatXpath(String calendar, String length) { */ private String getDateSkeletonXpath(String calendar, String length) { String formatPattern = - "//ldml/dates/calendars/calendar[@type=\"%s\"]/dateFormats/dateFormatLength[@type=\"%s\"]/dateFormat[@type=\"standard\"]/datetimeSkeleton[@type=\"standard\"]"; + "//ldml/dates/calendars/calendar[@type=\"%s\"]/dateFormats/dateFormatLength[@type=\"%s\"]/dateFormat[@type=\"standard\"]/datetimeSkeleton"; return String.format(formatPattern, calendar, length); } diff --git a/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java index daa84bb798b..8adc672759c 100644 --- a/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java +++ b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java @@ -17,12 +17,12 @@ public class GenerateDateTimeTestDataTest { public void testComputeSkeletonFromSemanticSkeleton() { Object[][] casesData = { - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "yMMMMd"}, - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "yMMMd"}, - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "yyMd"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "GyMMMMd"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "GyMMMd"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "GGGGGyMd"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "yMMMMdEEEE"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "yMMMdEEE"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "yyMdEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "GyMMMMdEEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "GyMMMdEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "GGGGGyMdEEE"}, }; for (Object[] caseDatum : casesData) { @@ -47,7 +47,7 @@ public void testComputeSkeletonFromSemanticSkeleton() { String actual = GenerateDateTimeTestData.computeSkeletonFromSemanticSkeleton( icuServiceBuilder, localeCldrFile, fieldStyleCombo, calendarStr); - assertEquals(actual, expected); + assertEquals(expected, actual, "skeleton string for locale " + localeStr + ", calendar " + calendarStr + ", semantic skeleton " + semanticSkeleton.toString() + ", skeleton length " +semanticSkeletonLength.getLabel()); } } From ef3bfc26015abc9cb9e93bf325d3b5ff720214cd Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 22 Jan 2025 10:47:24 -0800 Subject: [PATCH 08/15] CLDR-18128 Fix compilation and logical bugs in new semantic skeleton code --- .../cldr/tool/GenerateDateTimeTestData.java | 91 +++++++++++-------- 1 file changed, 53 insertions(+), 38 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index b74e807dfc6..adf7d48eef2 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -40,6 +40,7 @@ import org.unicode.cldr.util.CLDRFile.NumberingSystem; import org.unicode.cldr.util.CLDRPaths; import org.unicode.cldr.util.CalculatedCoverageLevels; +import org.unicode.cldr.util.DateTimeFormats; import org.unicode.cldr.util.Factory; import org.unicode.cldr.util.ICUServiceBuilder; import org.unicode.cldr.util.Level; @@ -830,7 +831,6 @@ public boolean isStandalone() { } enum HourCycle { - AUTO, H12, H23 } @@ -865,6 +865,7 @@ static class FieldStyleCombo { HourCycle hourCycle; ZoneStyle zoneStyle; YearStyle yearStyle; + DateTimeFormatType dateTimeFormatType; } /** @@ -872,7 +873,7 @@ static class FieldStyleCombo { * and whether to combine (obtain the Cartesian product of) them by other dimensions */ static class FieldStyleComboInput { - FieldStyleCombo fieldStyleCombo; + FieldStyleCombo fieldStyleCombo = new FieldStyleCombo(); boolean shouldMultiplyByTimeZone; boolean shouldMultiplyByDateTime; } @@ -900,6 +901,16 @@ private static ImmutableSet getFieldStyleComboInputs() { elem.fieldStyleCombo = new FieldStyleCombo(); elem.fieldStyleCombo.dateStyle = DateStyle.FULL; elem.fieldStyleCombo.timeStyle = TimeStyle.SHORT; + elem.fieldStyleCombo.dateTimeFormatType = DateTimeFormatType.AT_TIME; + elem.shouldMultiplyByDateTime = true; + builder.add(elem); + + // 3a + elem = new FieldStyleComboInput(); + elem.fieldStyleCombo = new FieldStyleCombo(); + elem.fieldStyleCombo.dateStyle = DateStyle.FULL; + elem.fieldStyleCombo.timeStyle = TimeStyle.SHORT; + elem.fieldStyleCombo.dateTimeFormatType = DateTimeFormatType.STANDARD; elem.shouldMultiplyByDateTime = true; builder.add(elem); @@ -908,6 +919,7 @@ private static ImmutableSet getFieldStyleComboInputs() { elem.fieldStyleCombo = new FieldStyleCombo(); elem.fieldStyleCombo.dateStyle = DateStyle.SHORT; elem.fieldStyleCombo.timeStyle = TimeStyle.FULL; + elem.fieldStyleCombo.dateTimeFormatType = DateTimeFormatType.AT_TIME; elem.shouldMultiplyByTimeZone = true; elem.shouldMultiplyByDateTime = true; builder.add(elem); @@ -917,6 +929,7 @@ private static ImmutableSet getFieldStyleComboInputs() { elem.fieldStyleCombo = new FieldStyleCombo(); elem.fieldStyleCombo.semanticSkeleton = SemanticSkeleton.YMDE; elem.fieldStyleCombo.semanticSkeletonLength = SemanticSkeletonLength.SHORT; + elem.shouldMultiplyByDateTime = true; builder.add(elem); elem = new FieldStyleComboInput(); @@ -1111,7 +1124,6 @@ static class TestCaseInput { TimeZone timeZone; ULocale locale; Calendar calendar; - DateTimeFormatType dateTimeFormatType; } static class TestCase { @@ -1290,19 +1302,20 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe } if (skeleton.hasTime()) { - // H M S - switch (fieldStyleCombo.hourCycle) { - case AUTO: - sb.append("C"); - break; - case H12: - sb.append("h"); - break; - case H23: - sb.append("H"); - break; - default: - break; + if (fieldStyleCombo.hourCycle == null) { + // TODO: use "C" instead of "j" by fixing NullPointerException in ICU4J + // DateTimePatternGenerator.mapSkeletonMetacharacters + sb.append("j"); + } else { + // H M S + switch (fieldStyleCombo.hourCycle) { + case H12: + sb.append("h"); + break; + case H23: + sb.append("H"); + break; + } } sb.append("m"); sb.append("s"); @@ -1342,19 +1355,21 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe } } + // TODO: Resolve the yearStyle as described in the spec + return sb.toString(); } - private static TestCase convertTestCaseInputToComboMap(ICUServiceBuilder icuServiceBuilder, + private static TestCase convertTestCaseInputToTestCase(ICUServiceBuilder icuServiceBuilder, CLDRFile localeCldrFile, TestCaseInput testCaseInput) { String calendarStr = testCaseInput.calendar.getType(); - String dateLength = testCaseInput.fieldStyleCombo.dateStyle.getLabel(); - String timeLength = testCaseInput.fieldStyleCombo.dateStyle.getLabel(); + String dateLength = testCaseInput.fieldStyleCombo.dateStyle == null ? null : testCaseInput.fieldStyleCombo.dateStyle.getLabel(); + String timeLength = testCaseInput.fieldStyleCombo.timeStyle == null ? null : testCaseInput.fieldStyleCombo.timeStyle.getLabel(); LocalDateTime localDt = testCaseInput.dateTime; TimeZone icuTimeZone = testCaseInput.timeZone; ZoneId zoneId = ZoneId.of(icuTimeZone.getID()); ZonedDateTime zdt = ZonedDateTime.of(localDt, zoneId); - String dateTimeGluePatternFormatType = testCaseInput.dateTimeFormatType.getLabel(); + String dateTimeGluePatternFormatType = testCaseInput.fieldStyleCombo.dateTimeFormatType == null ? null : testCaseInput.fieldStyleCombo.dateTimeFormatType.getLabel(); String expected = getExpectedStringForTestCase( icuServiceBuilder, @@ -1381,7 +1396,7 @@ private static TestCase computeTestCase( ) { if (testCaseInput.fieldStyleCombo.semanticSkeleton == null) { - return convertTestCaseInputToComboMap(icuServiceBuilder, localeCldrFile, testCaseInput); + return convertTestCaseInputToTestCase(icuServiceBuilder, localeCldrFile, testCaseInput); } else { // TODO: implement logic for converting sematic skeleton -> string concatenation of // skeleton-per-field for all fields -> use datetimepatterngenerator to convert @@ -1389,30 +1404,30 @@ private static TestCase computeTestCase( String calendarStr = testCaseInput.calendar.getType(); String skeleton = computeSkeletonFromSemanticSkeleton(icuServiceBuilder, localeCldrFile, testCaseInput.fieldStyleCombo, calendarStr); - - // TODO: implement me! - assert false; + // TODO: fix CLDR DateTimeFormats constructor to use CLDRFile to get the dateTimeFormat + // glue pattern rather than use ICU to get it + DateTimeFormats formats = new DateTimeFormats().set(localeCldrFile, calendarStr); + SimpleDateFormat formatterForSkeleton = formats.getDateFormatFromSkeleton(skeleton); + formatterForSkeleton.setTimeZone(testCaseInput.timeZone); + String timeZoneIdStr = testCaseInput.timeZone.getID(); + ZoneId timeZoneId = ZoneId.of(timeZoneIdStr); + ZonedDateTime zdt = ZonedDateTime.of(testCaseInput.dateTime, timeZoneId); + String formattedDateTime = formatterForSkeleton.format(zdt); + + TestCase result = new TestCase(); + result.testCaseInput = testCaseInput; + result.expected = formattedDateTime; + + return result; } - - - - - - // TODO: implement me! - assert false; - - - - // return 57; - return null; } public static void main(String[] args) throws IOException { try (TempPrintWriter pw = TempPrintWriter.openUTF8Writer( CLDRPaths.TEST_DATA + OUTPUT_SUBDIR, OUTPUT_FILENAME)) { - - Collection> testCases = generateAllTestCases(); + // TODO: customize GSON output format for timezone, calendar, etc. fields + ImmutableSet testCases = getKernelTestCases(); pw.println(GSON.toJson(testCases)); } } From e9e3b50c97cbf33f1a6e77820b9c3230b11db8e9 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 22 Jan 2025 12:05:02 -0800 Subject: [PATCH 09/15] CLDR-18128 Minor code rearrangement --- .../cldr/tool/GenerateDateTimeTestData.java | 178 +++++++++--------- 1 file changed, 89 insertions(+), 89 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index adf7d48eef2..36d6b80c203 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -1131,95 +1131,6 @@ static class TestCase { String expected; } - public static ImmutableSet getKernelTestCases() { - - // more manually defined inputs - - List> LOCALE_CALENDAR_PAIRS = List.of( - Pair.of(ULocale.ENGLISH, GregorianCalendar.getInstance()), - Pair.of(ULocale.forLanguageTag("ar-SA"), IslamicCalendar.getInstance()), - Pair.of(ULocale.forLanguageTag("th-TH"), BuddhistCalendar.getInstance()), - Pair.of(ULocale.forLanguageTag("ja-JP"), JapaneseCalendar.getInstance()) - ); - - List DATE_TIMES = List.of( - LocalDateTime.of(2000, 1, 1, 0, 0, 0), - LocalDateTime.of(2024, 7, 1, 8, 50, 7), - // Ramadan in Summer at 12:00 noon in the year 2014 - LocalDateTime.of(2014, 7, 15, 12, 0, 0) - ); - - List DATE_TIME_ONE_ONLY = List.of(DATE_TIMES.get(0)); - - // TODO: add a 3rd time zone dynamically, which is the default time zone for the current - // locale in question when iterating over all locales - List STATIC_TIME_ZONES = List.of( - TimeZone.GMT_ZONE, - TimeZone.getTimeZone("Australia/Adelaide") - ); - - List STATIC_TIME_ZONE_ONE_ONLY = List.of(STATIC_TIME_ZONES.get(0)); - - // setup of return value - - ImmutableSet.Builder builder = ImmutableSet.builder(); - - // iteration to add to return value - - for (Pair localeCalendarPair : LOCALE_CALENDAR_PAIRS) { - ULocale locale = localeCalendarPair.first; - Calendar calendar = localeCalendarPair.second; - - // get the formatted version of the locale with underscores instead of BCP 47 dashes - // since this is what the CLDRFile constructor expects - String localeStr = locale.getName(); - - CLDRFile localeCldrFile = getCLDRFile(localeStr).orElse(null); - - if (localeCldrFile == null) { - continue; - } - - ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); - icuServiceBuilder.clearCache(); - icuServiceBuilder.setCldrFile(localeCldrFile); - - for (FieldStyleComboInput input : getFieldStyleComboInputs()) { - assert input.shouldMultiplyByDateTime || input.shouldMultiplyByTimeZone; - - FieldStyleCombo fieldStyleCombo = input.fieldStyleCombo; - - List dateTimeIterationColl = DATE_TIME_ONE_ONLY; - if (input.shouldMultiplyByDateTime) { - dateTimeIterationColl = DATE_TIMES; - } - - List timeZoneIterationColl = STATIC_TIME_ZONE_ONE_ONLY; - if (input.shouldMultiplyByTimeZone) { - timeZoneIterationColl = STATIC_TIME_ZONES; - // TODO: add a TimeZone from the region of the locale to the list of time zones to iterate over - } - - for (LocalDateTime localDateTime : dateTimeIterationColl) { - for (TimeZone timeZone : timeZoneIterationColl) { - TestCaseInput testCaseInput = new TestCaseInput(); - testCaseInput.fieldStyleCombo = fieldStyleCombo; - testCaseInput.dateTime = localDateTime; - testCaseInput.timeZone = timeZone; - testCaseInput.locale = locale; - testCaseInput.calendar = calendar; - - TestCase testCase = computeTestCase(icuServiceBuilder, localeCldrFile, testCaseInput); - - builder.add(testCase); - } - } - } - } - - return builder.build(); - } - private static final Pattern SKELETON_YEAR_FIELD_PATTERN = Pattern.compile("G*y+"); private static final Pattern SKELETON_MONTH_FIELD_PATTERN = Pattern.compile("M+"); @@ -1422,6 +1333,95 @@ private static TestCase computeTestCase( } } + public static ImmutableSet getKernelTestCases() { + + // more manually defined inputs + + List> LOCALE_CALENDAR_PAIRS = List.of( + Pair.of(ULocale.ENGLISH, GregorianCalendar.getInstance()), + Pair.of(ULocale.forLanguageTag("ar-SA"), IslamicCalendar.getInstance()), + Pair.of(ULocale.forLanguageTag("th-TH"), BuddhistCalendar.getInstance()), + Pair.of(ULocale.forLanguageTag("ja-JP"), JapaneseCalendar.getInstance()) + ); + + List DATE_TIMES = List.of( + LocalDateTime.of(2000, 1, 1, 0, 0, 0), + LocalDateTime.of(2024, 7, 1, 8, 50, 7), + // Ramadan in Summer at 12:00 noon in the year 2014 + LocalDateTime.of(2014, 7, 15, 12, 0, 0) + ); + + List DATE_TIME_ONE_ONLY = List.of(DATE_TIMES.get(0)); + + // TODO: add a 3rd time zone dynamically, which is the default time zone for the current + // locale in question when iterating over all locales + List STATIC_TIME_ZONES = List.of( + TimeZone.GMT_ZONE, + TimeZone.getTimeZone("Australia/Adelaide") + ); + + List STATIC_TIME_ZONE_ONE_ONLY = List.of(STATIC_TIME_ZONES.get(0)); + + // setup of return value + + ImmutableSet.Builder builder = ImmutableSet.builder(); + + // iteration to add to return value + + for (Pair localeCalendarPair : LOCALE_CALENDAR_PAIRS) { + ULocale locale = localeCalendarPair.first; + Calendar calendar = localeCalendarPair.second; + + // get the formatted version of the locale with underscores instead of BCP 47 dashes + // since this is what the CLDRFile constructor expects + String localeStr = locale.getName(); + + CLDRFile localeCldrFile = getCLDRFile(localeStr).orElse(null); + + if (localeCldrFile == null) { + continue; + } + + ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); + icuServiceBuilder.clearCache(); + icuServiceBuilder.setCldrFile(localeCldrFile); + + for (FieldStyleComboInput input : getFieldStyleComboInputs()) { + assert input.shouldMultiplyByDateTime || input.shouldMultiplyByTimeZone; + + FieldStyleCombo fieldStyleCombo = input.fieldStyleCombo; + + List dateTimeIterationColl = DATE_TIME_ONE_ONLY; + if (input.shouldMultiplyByDateTime) { + dateTimeIterationColl = DATE_TIMES; + } + + List timeZoneIterationColl = STATIC_TIME_ZONE_ONE_ONLY; + if (input.shouldMultiplyByTimeZone) { + timeZoneIterationColl = STATIC_TIME_ZONES; + // TODO: add a TimeZone from the region of the locale to the list of time zones to iterate over + } + + for (LocalDateTime localDateTime : dateTimeIterationColl) { + for (TimeZone timeZone : timeZoneIterationColl) { + TestCaseInput testCaseInput = new TestCaseInput(); + testCaseInput.fieldStyleCombo = fieldStyleCombo; + testCaseInput.dateTime = localDateTime; + testCaseInput.timeZone = timeZone; + testCaseInput.locale = locale; + testCaseInput.calendar = calendar; + + TestCase testCase = computeTestCase(icuServiceBuilder, localeCldrFile, testCaseInput); + + builder.add(testCase); + } + } + } + } + + return builder.build(); + } + public static void main(String[] args) throws IOException { try (TempPrintWriter pw = TempPrintWriter.openUTF8Writer( From edd4dab3d97e407db2c2ce0cb14ae74df38d25c2 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 22 Jan 2025 15:28:13 -0800 Subject: [PATCH 10/15] CLDR-18128 Switch over printing code to include test cases that also include semantic skeletons --- .../cldr/tool/GenerateDateTimeTestData.java | 158 +++++++++++++++--- 1 file changed, 134 insertions(+), 24 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index 36d6b80c203..ba112dd5d43 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -669,7 +669,7 @@ private static Collection> generateAllTestCases() { if (fieldStyleCombo.containsKey("era") && calendar.equals("chinese")) { continue; } - // TODO: support test cases with skeletons or semantic skeletons + if (!fieldStyleCombo.containsKey("dateLength") && !fieldStyleCombo.containsKey("timeLength")) { continue; @@ -795,11 +795,21 @@ String getLabel() { } enum SemanticSkeleton { - YMDE, - MDTZ, - M, - T, - Z; + YMDE("YMDE"), + MDTZ("MDTZ"), + M("M"), + T("T"), + Z("Z"); + + public final String label; + + String getLabel() { + return this.label; + } + + SemanticSkeleton(String label) { + this.label = label; + } public boolean hasYear() { return this == SemanticSkeleton.YMDE; @@ -831,21 +841,51 @@ public boolean isStandalone() { } enum HourCycle { - H12, - H23 + H12("H12"), + H23("H23"); + + public final String label; + + String getLabel() { + return this.label; + } + + HourCycle(String label) { + this.label = label; + } } enum YearStyle { - AUTO, - FULL, - WITH_ERA, + AUTO("auto"), + FULL("full"), + WITH_ERA("with_era"); + + public final String label; + + String getLabel() { + return this.label; + } + + YearStyle(String label) { + this.label = label; + } } enum ZoneStyle { - SPECIFIC, - GENERIC, - LOCATION, - OFFSET, + SPECIFIC("specific"), + GENERIC("generic"), + LOCATION("location"), + OFFSET("offset"); + + public final String label; + + String getLabel() { + return this.label; + } + + ZoneStyle(String label) { + this.label = label; + } } // private class SemanticSkeletonFieldSet() @@ -1309,9 +1349,6 @@ private static TestCase computeTestCase( if (testCaseInput.fieldStyleCombo.semanticSkeleton == null) { return convertTestCaseInputToTestCase(icuServiceBuilder, localeCldrFile, testCaseInput); } else { - // TODO: implement logic for converting sematic skeleton -> string concatenation of - // skeleton-per-field for all fields -> use datetimepatterngenerator to convert - // skeleton string into pattern string String calendarStr = testCaseInput.calendar.getType(); String skeleton = computeSkeletonFromSemanticSkeleton(icuServiceBuilder, localeCldrFile, testCaseInput.fieldStyleCombo, calendarStr); @@ -1319,6 +1356,7 @@ private static TestCase computeTestCase( // glue pattern rather than use ICU to get it DateTimeFormats formats = new DateTimeFormats().set(localeCldrFile, calendarStr); SimpleDateFormat formatterForSkeleton = formats.getDateFormatFromSkeleton(skeleton); + formatterForSkeleton.setCalendar(testCaseInput.calendar); formatterForSkeleton.setTimeZone(testCaseInput.timeZone); String timeZoneIdStr = testCaseInput.timeZone.getID(); ZoneId timeZoneId = ZoneId.of(timeZoneIdStr); @@ -1338,10 +1376,10 @@ public static ImmutableSet getKernelTestCases() { // more manually defined inputs List> LOCALE_CALENDAR_PAIRS = List.of( - Pair.of(ULocale.ENGLISH, GregorianCalendar.getInstance()), - Pair.of(ULocale.forLanguageTag("ar-SA"), IslamicCalendar.getInstance()), - Pair.of(ULocale.forLanguageTag("th-TH"), BuddhistCalendar.getInstance()), - Pair.of(ULocale.forLanguageTag("ja-JP"), JapaneseCalendar.getInstance()) + Pair.of(ULocale.ENGLISH, new GregorianCalendar()), + Pair.of(ULocale.forLanguageTag("ar-SA"), new IslamicCalendar()), + Pair.of(ULocale.forLanguageTag("th-TH"), new BuddhistCalendar()), + Pair.of(ULocale.forLanguageTag("ja-JP"), new JapaneseCalendar()) ); List DATE_TIMES = List.of( @@ -1422,13 +1460,85 @@ public static ImmutableSet getKernelTestCases() { return builder.build(); } + /** + * This struct class exists specifically to convert from the structured {@code TestCase} struct + * class to one that is appropriate for de-/serializing (formatting & parsing), ex: + * to give it a flat structure that makes it easier for downstream consumers of the formatted + * output. + */ + static class TestCaseSerde { + String dateLength = null; + String timeLength = null; + String semanticSkeleton = null; + String semanticSkeletonLength = null; + String dateTimeFormatType = null; + String hourCycle = null; + String zoneStyle = null; + String yearStyle = null; + String calendar = null; + String locale = null; + String input = null; + String expected = null; + } + + private static TestCaseSerde convertTestCaseToSerialize(TestCase testCase) { + TestCaseSerde result = new TestCaseSerde(); + + result.dateLength = + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.dateStyle) + .map(DateStyle::getLabel) + .orElse(null); + result.timeLength = + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.timeStyle) + .map(TimeStyle::getLabel) + .orElse(null); + result.semanticSkeleton = + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.semanticSkeleton) + .map(SemanticSkeleton::getLabel) + .orElse(null); + result.semanticSkeletonLength = + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.semanticSkeletonLength) + .map(SemanticSkeletonLength::getLabel) + .orElse(null); + result.dateTimeFormatType = + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.dateTimeFormatType) + .map(DateTimeFormatType::getLabel) + .orElse(null); + result.hourCycle = + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.hourCycle) + .map(HourCycle::getLabel) + .orElse(null); + result.zoneStyle = + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.zoneStyle) + .map(ZoneStyle::getLabel) + .orElse(null); + result.yearStyle = + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.yearStyle) + .map(YearStyle::getLabel) + .orElse(null); + result.calendar = testCase.testCaseInput.calendar.getType(); + result.locale = testCase.testCaseInput.locale.toLanguageTag(); + + LocalDateTime localDt = testCase.testCaseInput.dateTime; + TimeZone icuTimeZone = testCase.testCaseInput.timeZone; + ZoneId zoneId = ZoneId.of(icuTimeZone.getID()); + ZonedDateTime zdt = ZonedDateTime.of(localDt, zoneId); + result.input = zdt.toString(); + + result.expected = testCase.expected; + + return result; + } + public static void main(String[] args) throws IOException { try (TempPrintWriter pw = TempPrintWriter.openUTF8Writer( CLDRPaths.TEST_DATA + OUTPUT_SUBDIR, OUTPUT_FILENAME)) { - // TODO: customize GSON output format for timezone, calendar, etc. fields ImmutableSet testCases = getKernelTestCases(); - pw.println(GSON.toJson(testCases)); + List testCaseSerdes = testCases.stream() + .map(GenerateDateTimeTestData::convertTestCaseToSerialize) + .collect(Collectors.toList()); + pw.println(GSON.toJson(testCaseSerdes)); } } } From 6c0ddcfc8596692c68589eaae2fc42e9b5e7f77f Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 22 Jan 2025 15:50:57 -0800 Subject: [PATCH 11/15] CLDR-18128 Regenerated datetime.json after new changes to gen code --- common/testData/datetime/datetime.json | 113874 +--------------------- 1 file changed, 2223 insertions(+), 111651 deletions(-) diff --git a/common/testData/datetime/datetime.json b/common/testData/datetime/datetime.json index e262deedb0a..50bae9deabc 100644 --- a/common/testData/datetime/datetime.json +++ b/common/testData/datetime/datetime.json @@ -1,112114 +1,2686 @@ [ { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "3/16/24, 5:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "3/16/24, 5:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 6:14 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 6:14 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 12:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 12:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5/29/50, 9:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50, 9:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7/15/69, 5:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7/15/69, 5:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 5:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 5:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9/8/01, 6:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9/8/01, 6:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "3/7/24, 12:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24, 12:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 1:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 1:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 7:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 7:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5/29/30, 4:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5/29/30, 4:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 12:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 12:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 1:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 1:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 1:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 1:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "3/17/24, 1:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24, 1:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 2:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 2:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 8:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 8:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5/29/50, 5:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50, 5:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 1:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 1:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 2:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 2:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 2:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 2:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "3/7/24, 9:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24, 9:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 9:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 9:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 3:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 3:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5/30/30, 12:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30, 12:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 8:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 8:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 10:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 10:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 9:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 9:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "3/17/24, 3:30 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24, 3:30 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 5:44 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 5:44 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 11:23 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 11:23 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5/29/50, 8:17 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50, 8:17 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 3:30 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 3:30 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 5:16 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 5:16 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 6:16 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 6:16 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "3/7/24, 11:30 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24, 11:30 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7/3/01, 12:44 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7/3/01, 12:44 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 6:23 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 6:23 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5/30/30, 3:17 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30, 3:17 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 10:30 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 10:30 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1/13/70, 1:16 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1/13/70, 1:16 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 1:16 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 1:16 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "3/17/24, 2:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24, 2:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 4:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 4:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 11:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 11:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5/29/50, 7:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50, 7:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 3:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 3:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 4:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 4:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 4:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 4:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "3/7/24, 10:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24, 10:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 11:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 11:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 6:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 6:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5/30/30, 2:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30, 2:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 10:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 10:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1/13/70, 12:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1/13/70, 12:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 11:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 11:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "3/17/24, 10:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24, 10:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 11:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 11:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 5:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 5:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5/30/50, 2:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5/30/50, 2:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 10:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 10:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 11:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 11:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 11:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 11:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "3/7/24, 6:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24, 6:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7/3/01, 6:14 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7/3/01, 6:14 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5/30/84, 12:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5/30/84, 12:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5/30/30, 9:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30, 9:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 5:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 5:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1/13/70, 7:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1/13/70, 7:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 6:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 6:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "3/17/24, 9:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24, 9:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 10:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 10:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 4:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 4:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5/30/50, 1:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5/30/50, 1:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 9:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 9:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 10:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 10:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 10:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 10:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "3/7/24, 5:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24, 5:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7/3/01, 5:14 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7/3/01, 5:14 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 11:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 11:53 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5/30/30, 8:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30, 8:47 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 4:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 4:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1/13/70, 6:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1/13/70, 6:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 5:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 5:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "3/16/24, 9:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "3/16/24, 9:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 10:14 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 10:14 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 4:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 4:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5/29/50, 1:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50, 1:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7/15/69, 9:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7/15/69, 9:00 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 10:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 10:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9/8/01, 10:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9/8/01, 10:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "3/7/24, 5:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24, 5:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7/2/01, 5:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01, 5:14 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5/29/84, 11:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84, 11:53 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5/29/30, 8:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5/29/30, 8:47 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7/16/69, 4:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69, 4:00 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1/12/70, 6:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70, 6:46 PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9/9/01, 5:46 AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01, 5:46 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mar 16, 2024, 5:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mar 16, 2024, 5:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 6:14:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 6:14:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 12:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 12:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 9:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050, 9:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jul 15, 1969, 5:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jul 15, 1969, 5:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 5:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 5:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sep 8, 2001, 6:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sep 8, 2001, 6:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mar 7, 2024, 12:00:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mar 7, 2024, 12:00:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 1:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 1:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 7:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 7:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2030, 4:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2030, 4:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 12:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 12:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 1:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 1:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 1:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 1:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mar 17, 2024, 1:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mar 17, 2024, 1:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 2:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 2:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 8:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 8:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 5:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050, 5:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 1:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 1:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 2:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 2:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 2:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 2:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mar 7, 2024, 9:00:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mar 7, 2024, 9:00:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 9:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 9:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 3:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 3:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 12:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030, 12:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 8:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 8:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 10:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 10:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 9:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 9:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mar 17, 2024, 3:30:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mar 17, 2024, 3:30:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 5:44:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 5:44:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 11:23:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 11:23:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 8:17:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050, 8:17:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 3:30:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 3:30:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 5:16:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 5:16:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 6:16:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 6:16:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mar 7, 2024, 11:30:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mar 7, 2024, 11:30:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jul 3, 2001, 12:44:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jul 3, 2001, 12:44:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 6:23:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 6:23:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 3:17:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030, 3:17:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 10:30:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 10:30:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jan 13, 1970, 1:16:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jan 13, 1970, 1:16:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 1:16:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 1:16:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mar 17, 2024, 2:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mar 17, 2024, 2:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 4:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 4:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 11:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 11:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 7:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050, 7:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 3:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 3:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 4:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 4:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 4:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 4:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mar 7, 2024, 10:00:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mar 7, 2024, 10:00:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 11:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 11:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 6:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 6:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 2:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030, 2:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 10:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 10:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jan 13, 1970, 12:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jan 13, 1970, 12:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 11:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 11:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mar 17, 2024, 10:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mar 17, 2024, 10:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 11:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 11:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 5:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 5:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2050, 2:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2050, 2:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 10:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 10:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 11:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 11:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 11:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 11:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mar 7, 2024, 6:00:01 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mar 7, 2024, 6:00:01 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jul 3, 2001, 6:14:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jul 3, 2001, 6:14:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "May 30, 1984, 12:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 1984, 12:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 9:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030, 9:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 5:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 5:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jan 13, 1970, 7:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jan 13, 1970, 7:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 6:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 6:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mar 17, 2024, 9:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mar 17, 2024, 9:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 10:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 10:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 4:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 4:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2050, 1:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2050, 1:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 9:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 9:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 10:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 10:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 10:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 10:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mar 7, 2024, 5:00:01 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mar 7, 2024, 5:00:01 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jul 3, 2001, 5:14:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jul 3, 2001, 5:14:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 11:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 11:53:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 8:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030, 8:47:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 4:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 4:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jan 13, 1970, 6:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jan 13, 1970, 6:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 5:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 5:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mar 16, 2024, 9:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mar 16, 2024, 9:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 10:14:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 10:14:15 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 4:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 4:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 1:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050, 1:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jul 15, 1969, 9:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jul 15, 1969, 9:00:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 10:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 10:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sep 8, 2001, 10:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sep 8, 2001, 10:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mar 7, 2024, 5:00:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mar 7, 2024, 5:00:01 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001, 5:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001, 5:14:15 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 11:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984, 11:53:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2030, 8:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2030, 8:47:00 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969, 4:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969, 4:00:00 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970, 6:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970, 6:46:40 PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001, 5:46:40 AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001, 5:46:40 AM" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "March 16, 2024, 5:00:00 PM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "March 16, 2024 at 5:00:00 PM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 6:14:15 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 6:14:15 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 12:53:00 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 12:53:00 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 9:47:00 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050 at 9:47:00 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "July 15, 1969, 5:00:00 PM GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "July 15, 1969 at 5:00:00 PM GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 5:46:40 AM PST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 5:46:40 AM PST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "September 8, 2001, 6:46:40 PM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "September 8, 2001 at 6:46:40 PM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "March 7, 2024, 12:00:01 AM PST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "March 7, 2024 at 12:00:01 AM PST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 1:14:15 PM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 1:14:15 PM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 7:53:00 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 7:53:00 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2030, 4:47:00 PM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2030 at 4:47:00 PM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 12:00:00 AM GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 12:00:00 AM GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 1:46:40 PM PST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 1:46:40 PM PST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 1:46:40 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 1:46:40 AM PDT" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "March 17, 2024, 1:00:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "March 17, 2024 at 1:00:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 2:14:15 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 2:14:15 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 8:53:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 8:53:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 5:47:00 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050 at 5:47:00 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 1:00:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 1:00:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 2:46:40 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 2:46:40 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 2:46:40 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 2:46:40 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "March 7, 2024, 9:00:01 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "March 7, 2024 at 9:00:01 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 9:14:15 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 9:14:15 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 3:53:00 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 3:53:00 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 12:47:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030 at 12:47:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 8:00:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 8:00:00 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 10:46:40 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 10:46:40 PM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 9:46:40 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 9:46:40 AM GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "March 17, 2024, 3:30:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "March 17, 2024 at 3:30:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 5:44:15 PM GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 5:44:15 PM GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 11:23:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 11:23:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 8:17:00 PM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050 at 8:17:00 PM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 3:30:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 3:30:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 5:16:40 PM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 5:16:40 PM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 6:16:40 AM GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 6:16:40 AM GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "March 7, 2024, 11:30:01 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "March 7, 2024 at 11:30:01 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "July 3, 2001, 12:44:15 AM GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "July 3, 2001 at 12:44:15 AM GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 6:23:00 PM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 6:23:00 PM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 3:17:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030 at 3:17:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 10:30:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 10:30:00 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "January 13, 1970, 1:16:40 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "January 13, 1970 at 1:16:40 AM GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 1:16:40 PM GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 1:16:40 PM GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "March 17, 2024, 2:00:00 AM GMT+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "March 17, 2024 at 2:00:00 AM GMT+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 4:14:15 PM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 4:14:15 PM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 11:53:00 AM GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 11:53:00 AM GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 7:47:00 PM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050 at 7:47:00 PM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 3:00:00 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 3:00:00 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 4:46:40 PM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 4:46:40 PM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 4:46:40 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 4:46:40 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "March 7, 2024, 10:00:01 AM GMT+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "March 7, 2024 at 10:00:01 AM GMT+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 11:14:15 PM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 11:14:15 PM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 6:53:00 PM GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 6:53:00 PM GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 2:47:00 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030 at 2:47:00 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 10:00:00 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 10:00:00 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "January 13, 1970, 12:46:40 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "January 13, 1970 at 12:46:40 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 11:46:40 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 11:46:40 AM GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "March 17, 2024, 10:00:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "March 17, 2024 at 10:00:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 11:14:15 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 11:14:15 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 5:53:00 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 5:53:00 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2050, 2:47:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2050 at 2:47:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 10:00:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 10:00:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 11:46:40 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 11:46:40 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 11:46:40 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 11:46:40 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "March 7, 2024, 6:00:01 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "March 7, 2024 at 6:00:01 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "July 3, 2001, 6:14:15 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "July 3, 2001 at 6:14:15 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "May 30, 1984, 12:53:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 1984 at 12:53:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 9:47:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030 at 9:47:00 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 5:00:00 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 5:00:00 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "January 13, 1970, 7:46:40 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "January 13, 1970 at 7:46:40 AM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 6:46:40 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 6:46:40 PM GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "March 17, 2024, 9:00:00 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "March 17, 2024 at 9:00:00 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 10:14:15 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 10:14:15 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 4:53:00 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 4:53:00 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2050, 1:47:00 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2050 at 1:47:00 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 9:00:00 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 9:00:00 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 10:46:40 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 10:46:40 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 10:46:40 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 10:46:40 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "March 7, 2024, 5:00:01 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "March 7, 2024 at 5:00:01 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "July 3, 2001, 5:14:15 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "July 3, 2001 at 5:14:15 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 11:53:00 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 11:53:00 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "May 30, 2030, 8:47:00 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "May 30, 2030 at 8:47:00 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 4:00:00 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 4:00:00 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "January 13, 1970, 6:46:40 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "January 13, 1970 at 6:46:40 AM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 5:46:40 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 5:46:40 PM GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "March 16, 2024, 9:00:00 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "March 16, 2024 at 9:00:00 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 10:14:15 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 10:14:15 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 4:53:00 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 4:53:00 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2050, 1:47:00 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2050 at 1:47:00 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "July 15, 1969, 9:00:00 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "July 15, 1969 at 9:00:00 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 10:46:40 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 10:46:40 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "September 8, 2001, 10:46:40 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "September 8, 2001 at 10:46:40 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "March 7, 2024, 5:00:01 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "March 7, 2024 at 5:00:01 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "July 2, 2001, 5:14:15 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "July 2, 2001 at 5:14:15 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "May 29, 1984, 11:53:00 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 1984 at 11:53:00 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "May 29, 2030, 8:47:00 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "May 29, 2030 at 8:47:00 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "July 16, 1969, 4:00:00 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "July 16, 1969 at 4:00:00 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "January 12, 1970, 6:46:40 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "January 12, 1970 at 6:46:40 PM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "September 9, 2001, 5:46:40 AM GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "September 9, 2001 at 5:46:40 AM GMT-3" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Saturday, March 16, 2024, 5:00:00 PM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, March 16, 2024 at 5:00:00 PM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 6:14:15 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 6:14:15 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 12:53:00 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 12:53:00 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 9:47:00 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 9:47:00 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 15, 1969, 5:00:00 PM GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 15, 1969 at 5:00:00 PM GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 5:46:40 AM Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 5:46:40 AM Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Saturday, September 8, 2001, 6:46:40 PM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, September 8, 2001 at 6:46:40 PM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 12:00:01 AM Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 12:00:01 AM Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 1:14:15 PM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 1:14:15 PM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 7:53:00 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 7:53:00 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, May 29, 2030, 4:47:00 PM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, May 29, 2030 at 4:47:00 PM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 12:00:00 AM GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 12:00:00 AM GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 1:46:40 PM Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 1:46:40 PM Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 1:46:40 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 1:46:40 AM Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 1:00:00 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 1:00:00 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 2:14:15 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 2:14:15 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 8:53:00 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 8:53:00 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 5:47:00 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 5:47:00 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 1:00:00 AM GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 1:00:00 AM GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 2:46:40 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 2:46:40 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 2:46:40 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 2:46:40 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 9:00:01 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 9:00:01 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 9:14:15 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 9:14:15 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 3:53:00 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 3:53:00 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 12:47:00 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 12:47:00 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 8:00:00 AM GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 8:00:00 AM GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 10:46:40 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 10:46:40 PM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 9:46:40 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 9:46:40 AM West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 3:30:00 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 3:30:00 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 5:44:15 PM Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 5:44:15 PM Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 11:23:00 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 11:23:00 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 8:17:00 PM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 8:17:00 PM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 3:30:00 AM GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 3:30:00 AM GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 5:16:40 PM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 5:16:40 PM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 6:16:40 AM Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 6:16:40 AM Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 11:30:01 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 11:30:01 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 3, 2001, 12:44:15 AM Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 3, 2001 at 12:44:15 AM Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 6:23:00 PM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 6:23:00 PM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 3:17:00 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 3:17:00 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 10:30:00 AM GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 10:30:00 AM GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, January 13, 1970, 1:16:40 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, January 13, 1970 at 1:16:40 AM Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 1:16:40 PM Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 1:16:40 PM Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 2:00:00 AM Eastern European Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 2:00:00 AM Eastern European Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 4:14:15 PM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 4:14:15 PM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 11:53:00 AM Moscow Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 11:53:00 AM Moscow Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 7:47:00 PM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 7:47:00 PM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 3:00:00 AM GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 3:00:00 AM GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 4:46:40 PM Moscow Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 4:46:40 PM Moscow Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 4:46:40 AM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 4:46:40 AM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 10:00:01 AM Eastern European Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 10:00:01 AM Eastern European Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 11:14:15 PM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 11:14:15 PM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 6:53:00 PM Moscow Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 6:53:00 PM Moscow Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 2:47:00 AM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 2:47:00 AM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 10:00:00 AM GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 10:00:00 AM GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, January 13, 1970, 12:46:40 AM Moscow Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, January 13, 1970 at 12:46:40 AM Moscow Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 11:46:40 AM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 11:46:40 AM Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 10:00:00 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 10:00:00 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 11:14:15 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 11:14:15 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 5:53:00 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 5:53:00 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, May 30, 2050, 2:47:00 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, May 30, 2050 at 2:47:00 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 10:00:00 AM GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 10:00:00 AM GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 11:46:40 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 11:46:40 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 11:46:40 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 11:46:40 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 6:00:01 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 6:00:01 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 3, 2001, 6:14:15 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 3, 2001 at 6:14:15 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, May 30, 1984, 12:53:00 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, May 30, 1984 at 12:53:00 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 9:47:00 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 9:47:00 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 5:00:00 PM GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 5:00:00 PM GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, January 13, 1970, 7:46:40 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, January 13, 1970 at 7:46:40 AM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 6:46:40 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 6:46:40 PM Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 9:00:00 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 9:00:00 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 10:14:15 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 10:14:15 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 4:53:00 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 4:53:00 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, May 30, 2050, 1:47:00 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, May 30, 2050 at 1:47:00 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 9:00:00 AM GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 9:00:00 AM GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 10:46:40 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 10:46:40 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 10:46:40 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 10:46:40 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 5:00:01 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 5:00:01 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 3, 2001, 5:14:15 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 3, 2001 at 5:14:15 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 11:53:00 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 11:53:00 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 8:47:00 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 8:47:00 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 4:00:00 PM GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 4:00:00 PM GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, January 13, 1970, 6:46:40 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, January 13, 1970 at 6:46:40 AM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 5:46:40 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 5:46:40 PM Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Saturday, March 16, 2024, 9:00:00 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, March 16, 2024 at 9:00:00 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 10:14:15 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 10:14:15 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 4:53:00 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 4:53:00 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 1:47:00 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 1:47:00 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 15, 1969, 9:00:00 PM GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 15, 1969 at 9:00:00 PM GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 10:46:40 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 10:46:40 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Saturday, September 8, 2001, 10:46:40 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, September 8, 2001 at 10:46:40 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 5:00:01 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 5:00:01 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 5:14:15 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 5:14:15 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 11:53:00 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 11:53:00 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, May 29, 2030, 8:47:00 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, May 29, 2030 at 8:47:00 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 4:00:00 AM GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 4:00:00 AM GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 6:46:40 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 6:46:40 PM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 5:46:40 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 5:46:40 AM Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Saturday, March 16, 2024, 5:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, March 16, 2024 at 5:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 6:14 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 6:14 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 12:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 12:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 9:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 9:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 15, 1969, 5:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 15, 1969 at 5:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 5:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 5:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Saturday, September 8, 2001, 6:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, September 8, 2001 at 6:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 12:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 12:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 1:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 1:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 7:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 7:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, May 29, 2030, 4:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, May 29, 2030 at 4:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 12:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 12:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 1:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 1:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 1:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 1:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 1:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 1:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 2:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 2:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 8:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 8:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 5:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 5:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 1:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 1:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 2:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 2:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 2:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 2:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 9:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 9:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 9:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 9:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 3:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 3:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 12:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 12:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 8:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 8:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 10:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 10:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 9:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 9:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 3:30 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 3:30 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 5:44 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 5:44 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 11:23 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 11:23 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 8:17 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 8:17 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 3:30 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 3:30 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 5:16 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 5:16 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 6:16 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 6:16 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 11:30 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 11:30 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 3, 2001, 12:44 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 3, 2001 at 12:44 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 6:23 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 6:23 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 3:17 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 3:17 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 10:30 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 10:30 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, January 13, 1970, 1:16 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, January 13, 1970 at 1:16 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 1:16 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 1:16 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 2:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 2:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 4:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 4:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 11:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 11:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 7:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 7:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 3:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 3:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 4:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 4:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 4:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 4:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 10:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 10:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 11:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 11:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 6:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 6:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 2:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 2:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 10:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 10:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, January 13, 1970, 12:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, January 13, 1970 at 12:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 11:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 11:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 10:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 10:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 11:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 11:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 5:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 5:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, May 30, 2050, 2:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, May 30, 2050 at 2:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 10:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 10:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 11:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 11:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 11:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 11:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 6:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 6:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 3, 2001, 6:14 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 3, 2001 at 6:14 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, May 30, 1984, 12:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, May 30, 1984 at 12:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 9:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 9:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 5:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 5:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, January 13, 1970, 7:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, January 13, 1970 at 7:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 6:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 6:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, March 17, 2024, 9:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, March 17, 2024 at 9:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 10:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 10:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 4:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 4:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, May 30, 2050, 1:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, May 30, 2050 at 1:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 9:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 9:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 10:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 10:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 10:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 10:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 5:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 5:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 3, 2001, 5:14 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 3, 2001 at 5:14 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 11:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 11:53 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Thursday, May 30, 2030, 8:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, May 30, 2030 at 8:47 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 4:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 4:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, January 13, 1970, 6:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, January 13, 1970 at 6:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 5:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 5:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Saturday, March 16, 2024, 9:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, March 16, 2024 at 9:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 10:14 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 10:14 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 4:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 4:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sunday, May 29, 2050, 1:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, May 29, 2050 at 1:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, July 15, 1969, 9:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, July 15, 1969 at 9:00 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 10:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 10:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Saturday, September 8, 2001, 10:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, September 8, 2001 at 10:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Thursday, March 7, 2024, 5:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, March 7, 2024 at 5:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, July 2, 2001, 5:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, July 2, 2001 at 5:14 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, May 29, 1984, 11:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, May 29, 1984 at 11:53 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, May 29, 2030, 8:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, May 29, 2030 at 8:47 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, July 16, 1969, 4:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, July 16, 1969 at 4:00 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, January 12, 1970, 6:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, January 12, 1970 at 6:46 PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sunday, September 9, 2001, 5:46 AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, September 9, 2001 at 5:46 AM" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "March 16, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "July 15, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "September 8, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "March 7, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "May 29, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "March 17, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "May 29, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "March 7, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "May 30, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "March 17, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "May 29, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "March 7, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "July 3, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "May 30, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "January 13, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "March 17, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "May 29, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "March 7, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "May 30, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "January 13, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "March 17, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "March 7, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "July 3, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "May 30, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "May 30, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "January 13, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "March 17, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "May 30, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "March 7, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "July 3, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "May 30, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "January 13, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "September 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "March 16, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "May 29, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "July 15, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "September 8, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "March 7, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "July 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "May 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "May 29, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "July 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "January 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "September 9, 2001" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "5:00:00 PM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "6:14:15 AM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "12:53:00 AM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "9:47:00 AM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "5:00:00 PM GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "5:46:40 AM PST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "6:46:40 PM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "12:00:01 AM PST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "1:14:15 PM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "7:53:00 AM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "4:47:00 PM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "12:00:00 AM GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1:46:40 PM PST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "1:46:40 AM PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "1:00:00 AM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2:14:15 PM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "8:53:00 AM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "5:47:00 PM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1:00:00 AM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "2:46:40 PM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2:46:40 AM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "9:00:01 AM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "9:14:15 PM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "3:53:00 PM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "12:47:00 AM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "8:00:00 AM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "10:46:40 PM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9:46:40 AM GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "3:30:00 AM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "5:44:15 PM GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 AM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "8:17:00 PM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "3:30:00 AM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "5:16:40 PM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "6:16:40 AM GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 AM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "12:44:15 AM GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "6:23:00 PM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "3:17:00 AM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 AM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1:16:40 AM GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "1:16:40 PM GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2:00:00 AM GMT+2" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "4:14:15 PM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 AM GMT+4" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "7:47:00 PM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "3:00:00 AM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "4:46:40 PM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "4:46:40 AM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 AM GMT+2" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "11:14:15 PM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "6:53:00 PM GMT+4" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2:47:00 AM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 AM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "12:46:40 AM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 AM GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 AM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "11:14:15 PM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "5:53:00 PM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2:47:00 AM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 AM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 PM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 AM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "6:00:01 PM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "6:14:15 AM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "12:53:00 AM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "9:47:00 AM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "5:00:00 PM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "7:46:40 AM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "6:46:40 PM GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "9:00:00 AM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "10:14:15 PM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "4:53:00 PM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "1:47:00 AM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "9:00:00 AM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 PM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 AM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "5:00:01 PM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "5:14:15 AM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "11:53:00 PM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "8:47:00 AM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "4:00:00 PM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "6:46:40 AM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "5:46:40 PM GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "9:00:00 PM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 AM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "4:53:00 AM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "1:47:00 PM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "9:00:00 PM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 AM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 PM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "5:00:01 AM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "5:14:15 PM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 AM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "8:47:00 PM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "4:00:00 AM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "6:46:40 PM GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-US", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "5:46:40 AM GMT-3" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16/03/2024, 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16/03/2024, 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 06:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 06:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 00:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 00:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29/05/2050, 09:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29/05/2050, 09:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "15/07/1969, 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "15/07/1969, 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 05:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 05:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "08/09/2001, 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "08/09/2001, 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "07/03/2024, 00:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "07/03/2024, 00:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 13:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 13:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 07:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 07:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29/05/2030, 16:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29/05/2030, 16:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 00:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 00:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 13:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 13:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 01:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 01:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17/03/2024, 01:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "17/03/2024, 01:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 14:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 14:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 08:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 08:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29/05/2050, 17:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29/05/2050, 17:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 01:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 01:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 14:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 14:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 02:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 02:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "07/03/2024, 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "07/03/2024, 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 21:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 21:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 15:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 15:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "30/05/2030, 00:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "30/05/2030, 00:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 08:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 08:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 09:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 09:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17/03/2024, 03:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17/03/2024, 03:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 17:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 17:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29/05/2050, 20:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29/05/2050, 20:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 03:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 03:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 17:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 17:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 06:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 06:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "07/03/2024, 11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "07/03/2024, 11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03/07/2001, 00:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "03/07/2001, 00:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 18:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 18:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "30/05/2030, 03:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "30/05/2030, 03:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13/01/1970, 01:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "13/01/1970, 01:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 13:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 13:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "17/03/2024, 02:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "17/03/2024, 02:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 16:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 16:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29/05/2050, 19:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29/05/2050, 19:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 03:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 03:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 16:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 16:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 04:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 04:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "07/03/2024, 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "07/03/2024, 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 23:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 23:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 18:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 18:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "30/05/2030, 02:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "30/05/2030, 02:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "13/01/1970, 00:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "13/01/1970, 00:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17/03/2024, 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17/03/2024, 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 23:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 23:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 17:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 17:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30/05/2050, 02:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30/05/2050, 02:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 23:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 23:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "07/03/2024, 18:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "07/03/2024, 18:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "03/07/2001, 06:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "03/07/2001, 06:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30/05/1984, 00:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30/05/1984, 00:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30/05/2030, 09:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30/05/2030, 09:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "13/01/1970, 07:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "13/01/1970, 07:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17/03/2024, 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17/03/2024, 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 22:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 22:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 16:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 16:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30/05/2050, 01:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30/05/2050, 01:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "07/03/2024, 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "07/03/2024, 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "03/07/2001, 05:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "03/07/2001, 05:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 23:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 23:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30/05/2030, 08:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30/05/2030, 08:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 16:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 16:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "13/01/1970, 06:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "13/01/1970, 06:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 17:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 17:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16/03/2024, 21:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16/03/2024, 21:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 04:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 04:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29/05/2050, 13:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29/05/2050, 13:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "15/07/1969, 21:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "15/07/1969, 21:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "08/09/2001, 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "08/09/2001, 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "07/03/2024, 05:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "07/03/2024, 05:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "02/07/2001, 17:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "02/07/2001, 17:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29/05/1984, 11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29/05/1984, 11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29/05/2030, 20:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29/05/2030, 20:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16/07/1969, 04:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16/07/1969, 04:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12/01/1970, 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12/01/1970, 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "09/09/2001, 05:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "09/09/2001, 05:46" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16 Mar 2024, 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16 Mar 2024, 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 06:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 06:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 00:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 00:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 09:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050, 09:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "15 Jul 1969, 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "15 Jul 1969, 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 05:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 05:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "8 Sept 2001, 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "8 Sept 2001, 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7 Mar 2024, 00:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7 Mar 2024, 00:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 13:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 13:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 07:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 07:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 May 2030, 16:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2030, 16:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 00:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 00:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 13:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 13:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 01:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 01:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17 Mar 2024, 01:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "17 Mar 2024, 01:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 14:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 14:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 08:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 08:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 17:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050, 17:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 01:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 01:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 14:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 14:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 02:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 02:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7 Mar 2024, 09:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7 Mar 2024, 09:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 21:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 21:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 15:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 15:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 00:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030, 00:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 08:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 08:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 09:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 09:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17 Mar 2024, 03:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17 Mar 2024, 03:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 17:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 17:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 20:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050, 20:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 03:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 03:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 17:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 17:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 06:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 06:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7 Mar 2024, 11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7 Mar 2024, 11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "3 Jul 2001, 00:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "3 Jul 2001, 00:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 18:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 18:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 03:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030, 03:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13 Jan 1970, 01:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "13 Jan 1970, 01:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 13:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 13:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "17 Mar 2024, 02:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "17 Mar 2024, 02:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 16:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 16:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 19:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050, 19:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 03:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 03:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 16:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 16:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 04:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 04:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7 Mar 2024, 10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7 Mar 2024, 10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 23:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 23:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 18:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 18:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 02:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030, 02:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "13 Jan 1970, 00:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "13 Jan 1970, 00:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17 Mar 2024, 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17 Mar 2024, 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 23:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 23:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 17:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 17:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 May 2050, 02:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2050, 02:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 23:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 23:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7 Mar 2024, 18:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7 Mar 2024, 18:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "3 Jul 2001, 06:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "3 Jul 2001, 06:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 May 1984, 00:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 May 1984, 00:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 09:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030, 09:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "13 Jan 1970, 07:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "13 Jan 1970, 07:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17 Mar 2024, 09:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17 Mar 2024, 09:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 22:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 22:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 16:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 16:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30 May 2050, 01:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2050, 01:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 09:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 09:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7 Mar 2024, 17:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7 Mar 2024, 17:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "3 Jul 2001, 05:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "3 Jul 2001, 05:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 23:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 23:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 08:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030, 08:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 16:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 16:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "13 Jan 1970, 06:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "13 Jan 1970, 06:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 17:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 17:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16 Mar 2024, 21:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16 Mar 2024, 21:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 04:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 04:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 13:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050, 13:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "15 Jul 1969, 21:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "15 Jul 1969, 21:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "8 Sept 2001, 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "8 Sept 2001, 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7 Mar 2024, 05:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7 Mar 2024, 05:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2 Jul 2001, 17:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2 Jul 2001, 17:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984, 11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 May 2030, 20:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2030, 20:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16 Jul 1969, 04:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16 Jul 1969, 04:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12 Jan 1970, 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12 Jan 1970, 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9 Sept 2001, 05:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9 Sept 2001, 05:46:40" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16 March 2024, 17:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16 March 2024 at 17:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 06:14:15 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 06:14:15 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 00:53:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 00:53:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 09:47:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050 at 09:47:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "15 July 1969, 17:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "15 July 1969 at 17:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 05:46:40 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 05:46:40 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "8 September 2001, 18:46:40 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "8 September 2001 at 18:46:40 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7 March 2024, 00:00:01 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7 March 2024 at 00:00:01 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 13:14:15 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 13:14:15 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 07:53:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 07:53:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 May 2030, 16:47:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2030 at 16:47:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 00:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 00:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 13:46:40 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 13:46:40 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 01:46:40 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 01:46:40 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17 March 2024, 01:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "17 March 2024 at 01:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 14:14:15 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 14:14:15 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 08:53:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 08:53:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 17:47:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050 at 17:47:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 01:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 01:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 14:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 14:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 02:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 02:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7 March 2024, 09:00:01 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7 March 2024 at 09:00:01 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 21:14:15 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 21:14:15 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 15:53:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 15:53:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 00:47:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030 at 00:47:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 08:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 08:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 22:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 22:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 09:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 09:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17 March 2024, 03:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17 March 2024 at 03:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 17:44:15 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 17:44:15 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 11:23:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 11:23:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 20:17:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050 at 20:17:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 03:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 03:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 17:16:40 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 17:16:40 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 06:16:40 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 06:16:40 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7 March 2024, 11:30:01 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7 March 2024 at 11:30:01 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "3 July 2001, 00:44:15 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "3 July 2001 at 00:44:15 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 18:23:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 18:23:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 03:17:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030 at 03:17:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 10:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 10:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13 January 1970, 01:16:40 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "13 January 1970 at 01:16:40 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 13:16:40 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 13:16:40 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "17 March 2024, 02:00:00 EET" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "17 March 2024 at 02:00:00 EET" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 16:14:15 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 16:14:15 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 11:53:00 GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 11:53:00 GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 19:47:00 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050 at 19:47:00 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 03:00:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 03:00:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 16:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 16:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 04:46:40 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 04:46:40 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7 March 2024, 10:00:01 EET" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7 March 2024 at 10:00:01 EET" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 23:14:15 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 23:14:15 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 18:53:00 GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 18:53:00 GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 02:47:00 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030 at 02:47:00 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 10:00:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 10:00:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "13 January 1970, 00:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "13 January 1970 at 00:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 11:46:40 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 11:46:40 EEST" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17 March 2024, 10:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17 March 2024 at 10:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 23:14:15 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 23:14:15 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 17:53:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 17:53:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 May 2050, 02:47:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2050 at 02:47:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 10:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 10:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 23:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 23:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 11:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 11:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7 March 2024, 18:00:01 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7 March 2024 at 18:00:01 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "3 July 2001, 06:14:15 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "3 July 2001 at 06:14:15 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 May 1984, 00:53:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 May 1984 at 00:53:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 09:47:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030 at 09:47:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 17:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 17:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "13 January 1970, 07:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "13 January 1970 at 07:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 18:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 18:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17 March 2024, 09:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17 March 2024 at 09:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 22:14:15 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 22:14:15 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 16:53:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 16:53:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30 May 2050, 01:47:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2050 at 01:47:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 09:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 09:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 22:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 22:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 10:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 10:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7 March 2024, 17:00:01 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7 March 2024 at 17:00:01 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "3 July 2001, 05:14:15 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "3 July 2001 at 05:14:15 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 23:53:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 23:53:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30 May 2030, 08:47:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30 May 2030 at 08:47:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 16:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 16:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "13 January 1970, 06:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "13 January 1970 at 06:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 17:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 17:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16 March 2024, 21:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16 March 2024 at 21:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 10:14:15 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 10:14:15 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 04:53:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 04:53:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 May 2050, 13:47:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2050 at 13:47:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "15 July 1969, 21:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "15 July 1969 at 21:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 10:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 10:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "8 September 2001, 22:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "8 September 2001 at 22:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7 March 2024, 05:00:01 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7 March 2024 at 05:00:01 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2 July 2001, 17:14:15 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2 July 2001 at 17:14:15 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 May 1984, 11:53:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 May 1984 at 11:53:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 May 2030, 20:47:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 May 2030 at 20:47:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16 July 1969, 04:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16 July 1969 at 04:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12 January 1970, 18:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12 January 1970 at 18:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9 September 2001, 05:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9 September 2001 at 05:46:40 GMT-3" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Saturday, 16 March 2024, 17:00:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, 16 March 2024 at 17:00:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 06:14:15 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 06:14:15 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 00:53:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 00:53:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 09:47:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 09:47:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 15 July 1969, 17:00:00 GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 15 July 1969 at 17:00:00 GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 05:46:40 Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 05:46:40 Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Saturday, 8 September 2001, 18:46:40 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, 8 September 2001 at 18:46:40 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 00:00:01 Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 00:00:01 Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 13:14:15 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 13:14:15 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 07:53:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 07:53:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 29 May 2030, 16:47:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 29 May 2030 at 16:47:00 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 00:00:00 GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 00:00:00 GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 13:46:40 Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 13:46:40 Pacific Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 01:46:40 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 01:46:40 Pacific Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 01:00:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 01:00:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 14:14:15 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 14:14:15 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 08:53:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 08:53:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 17:47:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 17:47:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 01:00:00 GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 01:00:00 GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 14:46:40 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 14:46:40 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 02:46:40 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 02:46:40 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 09:00:01 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 09:00:01 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 21:14:15 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 21:14:15 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 15:53:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 15:53:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 00:47:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 00:47:00 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 08:00:00 GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 08:00:00 GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 22:46:40 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 22:46:40 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 09:46:40 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 09:46:40 West Africa Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 03:30:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 03:30:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 17:44:15 Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 17:44:15 Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 11:23:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 11:23:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 20:17:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 20:17:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 03:30:00 GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 03:30:00 GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 17:16:40 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 17:16:40 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 06:16:40 Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 06:16:40 Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 11:30:01 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 11:30:01 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 3 July 2001, 00:44:15 Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 3 July 2001 at 00:44:15 Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 18:23:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 18:23:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 03:17:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 03:17:00 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 10:30:00 GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 10:30:00 GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 13 January 1970, 01:16:40 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 13 January 1970 at 01:16:40 Iran Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 13:16:40 Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 13:16:40 Iran Daylight Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 02:00:00 Eastern European Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 02:00:00 Eastern European Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 16:14:15 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 16:14:15 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 11:53:00 Moscow Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 11:53:00 Moscow Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 19:47:00 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 19:47:00 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 03:00:00 GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 03:00:00 GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 16:46:40 Moscow Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 16:46:40 Moscow Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 04:46:40 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 04:46:40 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 10:00:01 Eastern European Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 10:00:01 Eastern European Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 23:14:15 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 23:14:15 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 18:53:00 Moscow Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 18:53:00 Moscow Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 02:47:00 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 02:47:00 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 10:00:00 GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 10:00:00 GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 13 January 1970, 00:46:40 Moscow Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 13 January 1970 at 00:46:40 Moscow Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 11:46:40 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 11:46:40 Eastern European Summer Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 10:00:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 10:00:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 23:14:15 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 23:14:15 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 17:53:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 17:53:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, 30 May 2050, 02:47:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 30 May 2050 at 02:47:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 10:00:00 GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 10:00:00 GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 23:46:40 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 23:46:40 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 11:46:40 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 11:46:40 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 18:00:01 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 18:00:01 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 3 July 2001, 06:14:15 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 3 July 2001 at 06:14:15 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 30 May 1984, 00:53:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 30 May 1984 at 00:53:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 09:47:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 09:47:00 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 17:00:00 GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 17:00:00 GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 13 January 1970, 07:46:40 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 13 January 1970 at 07:46:40 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 18:46:40 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 18:46:40 Australian Eastern Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 09:00:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 09:00:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 22:14:15 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 22:14:15 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 16:53:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 16:53:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, 30 May 2050, 01:47:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 30 May 2050 at 01:47:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 09:00:00 GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 09:00:00 GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 22:46:40 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 22:46:40 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 10:46:40 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 10:46:40 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 17:00:01 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 17:00:01 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 3 July 2001, 05:14:15 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 3 July 2001 at 05:14:15 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 23:53:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 23:53:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 08:47:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 08:47:00 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 16:00:00 GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 16:00:00 GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 13 January 1970, 06:46:40 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 13 January 1970 at 06:46:40 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 17:46:40 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 17:46:40 Palau Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Saturday, 16 March 2024, 21:00:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, 16 March 2024 at 21:00:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 10:14:15 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 10:14:15 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 04:53:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 04:53:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 13:47:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 13:47:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 15 July 1969, 21:00:00 GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 15 July 1969 at 21:00:00 GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 10:46:40 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 10:46:40 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Saturday, 8 September 2001, 22:46:40 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, 8 September 2001 at 22:46:40 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 05:00:01 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 05:00:01 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 17:14:15 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 17:14:15 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 11:53:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 11:53:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 29 May 2030, 20:47:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 29 May 2030 at 20:47:00 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 04:00:00 GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 04:00:00 GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 18:46:40 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 18:46:40 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 05:46:40 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 05:46:40 Uruguay Standard Time" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Saturday, 16 March 2024, 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, 16 March 2024 at 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 06:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 06:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 00:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 00:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 09:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 09:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 15 July 1969, 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 15 July 1969 at 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 05:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 05:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Saturday, 8 September 2001, 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, 8 September 2001 at 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 00:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 00:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 13:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 13:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 07:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 07:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 29 May 2030, 16:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 29 May 2030 at 16:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 00:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 00:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 13:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 13:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 01:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 01:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 01:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 01:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 14:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 14:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 08:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 08:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 17:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 17:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 01:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 01:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 14:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 14:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 02:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 02:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 21:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 21:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 15:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 15:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 00:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 00:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 08:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 08:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 09:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 09:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 03:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 03:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 17:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 17:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 20:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 20:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 03:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 03:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 17:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 17:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 06:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 06:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 3 July 2001, 00:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 3 July 2001 at 00:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 18:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 18:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 03:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 03:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 13 January 1970, 01:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 13 January 1970 at 01:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 13:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 13:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 02:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 02:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 16:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 16:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 19:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 19:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 03:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 03:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 16:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 16:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 04:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 04:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 23:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 23:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 18:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 18:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 02:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 02:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 13 January 1970, 00:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 13 January 1970 at 00:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 23:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 23:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 17:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 17:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, 30 May 2050, 02:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 30 May 2050 at 02:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 23:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 23:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 18:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 18:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 3 July 2001, 06:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 3 July 2001 at 06:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 30 May 1984, 00:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 30 May 1984 at 00:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 09:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 09:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 13 January 1970, 07:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 13 January 1970 at 07:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 17 March 2024, 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 17 March 2024 at 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 22:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 22:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 16:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 16:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, 30 May 2050, 01:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 30 May 2050 at 01:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 3 July 2001, 05:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 3 July 2001 at 05:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 23:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 23:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 30 May 2030, 08:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 30 May 2030 at 08:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 16:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 16:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 13 January 1970, 06:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 13 January 1970 at 06:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 17:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 17:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Saturday, 16 March 2024, 21:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, 16 March 2024 at 21:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 04:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 04:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 29 May 2050, 13:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 29 May 2050 at 13:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 15 July 1969, 21:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 15 July 1969 at 21:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Saturday, 8 September 2001, 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Saturday, 8 September 2001 at 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Thursday, 7 March 2024, 05:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Thursday, 7 March 2024 at 05:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, 2 July 2001, 17:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 2 July 2001 at 17:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Tuesday, 29 May 1984, 11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Tuesday, 29 May 1984 at 11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 29 May 2030, 20:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 29 May 2030 at 20:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Wednesday, 16 July 1969, 04:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Wednesday, 16 July 1969 at 04:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Monday, 12 January 1970, 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Monday, 12 January 1970 at 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sunday, 9 September 2001, 05:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sunday, 9 September 2001 at 05:46" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 May 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 May 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 May 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 May 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 May 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 May 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 May 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 May 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 May 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 May 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 May 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 May 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 May 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 September 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 March 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 July 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 May 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 May 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 July 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 January 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 September 2001" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14:15 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46:40 GMT-8" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46:40 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00:01 GMT-8" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14:15 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46:40 GMT-8" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46:40 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14:15 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46:40 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46:40 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00:01 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14:15 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46:40 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46:40 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44:15 GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16:40 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16:40 GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44:15 GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16:40 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16:40 GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00:00 EET" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14:15 EEST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 GMT+4" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47:00 EEST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00:00 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46:40 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46:40 EEST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 EET" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14:15 EEST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53:00 GMT+4" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47:00 EEST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46:40 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 EEST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14:15 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46:40 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00:01 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14:15 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46:40 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46:40 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14:15 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00:01 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14:15 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46:40 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00:01 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14:15 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46:40 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "en-GB", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "05:46:40 GMT-3" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024/3/16 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/16 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050/5/29 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050/5/29 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969/7/15 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/15 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001/9/8 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/8 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024/3/7 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/7 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 下午1:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 下午1:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 清晨7:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 清晨7:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030/5/29 下午4:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030/5/29 下午4:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 下午1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 下午1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 凌晨1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 凌晨1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024/3/17 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/17 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 下午2:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 下午2:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 上午8:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 上午8:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050/5/29 下午5:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050/5/29 下午5:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 下午2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 下午2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 凌晨2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 凌晨2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024/3/7 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/7 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 晚上9:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 晚上9:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 下午3:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 下午3:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030/5/30 凌晨12:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030/5/30 凌晨12:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 上午8:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 上午8:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 上午9:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 上午9:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024/3/17 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/17 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 下午5:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 下午5:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 上午11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 上午11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050/5/29 晚上8:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050/5/29 晚上8:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 下午5:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 下午5:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 清晨6:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 清晨6:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024/3/7 上午11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/7 上午11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001/7/3 凌晨12:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/3 凌晨12:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 下午6:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 下午6:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030/5/30 凌晨3:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030/5/30 凌晨3:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 上午10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 上午10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970/1/13 凌晨1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/13 凌晨1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 下午1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 下午1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024/3/17 凌晨2:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/17 凌晨2:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 下午4:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 下午4:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050/5/29 晚上7:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050/5/29 晚上7:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 凌晨3:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 凌晨3:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 下午4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 下午4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 凌晨4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 凌晨4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024/3/7 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/7 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 下午6:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 下午6:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030/5/30 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030/5/30 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970/1/13 凌晨12:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/13 凌晨12:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024/3/17 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/17 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 下午5:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 下午5:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050/5/30 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050/5/30 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 晚上11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 晚上11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024/3/7 下午6:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/7 下午6:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001/7/3 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/3 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984/5/30 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/30 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030/5/30 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030/5/30 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970/1/13 清晨7:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/13 清晨7:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024/3/17 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/17 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 晚上10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 晚上10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 下午4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 下午4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050/5/30 凌晨1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050/5/30 凌晨1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024/3/7 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/7 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001/7/3 清晨5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/3 清晨5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 晚上11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 晚上11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030/5/30 上午8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030/5/30 上午8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 下午4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 下午4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970/1/13 清晨6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/13 清晨6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 下午5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 下午5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024/3/16 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/16 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 上午10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 上午10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 凌晨4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 凌晨4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050/5/29 下午1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050/5/29 下午1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969/7/15 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/15 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001/9/8 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/8 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024/3/7 清晨5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024/3/7 清晨5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001/7/2 下午5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/2 下午5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984/5/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984/5/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030/5/29 晚上8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030/5/29 晚上8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969/7/16 凌晨4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969/7/16 凌晨4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970/1/12 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970/1/12 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001/9/9 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001/9/9 清晨5:46" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年3月16日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月16日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年7月15日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月15日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年9月8日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月8日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 凌晨12:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 凌晨12:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午1:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午1:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 清晨7:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 清晨7:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030年5月29日 下午4:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月29日 下午4:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨12:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨12:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 凌晨1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 凌晨1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午2:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午2:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 上午8:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 上午8:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 下午5:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 下午5:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 凌晨2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 凌晨2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 上午9:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 上午9:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 晚上9:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 晚上9:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午3:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午3:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 凌晨12:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 凌晨12:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午8:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午8:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 上午9:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 上午9:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午5:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午5:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 上午11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 上午11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 晚上8:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 晚上8:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午5:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午5:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 清晨6:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 清晨6:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 上午11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 上午11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 凌晨12:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 凌晨12:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午6:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午6:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 凌晨3:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 凌晨3:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 凌晨1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 凌晨1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 下午1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 下午1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 凌晨2:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 凌晨2:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午4:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午4:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 晚上7:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 晚上7:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨3:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨3:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 凌晨4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 凌晨4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 上午10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 上午10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午6:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午6:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 凌晨12:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 凌晨12:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午5:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午5:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050年5月30日 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月30日 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 晚上11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 晚上11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 下午6:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 下午6:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年5月30日 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月30日 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 清晨7:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 清晨7:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 晚上10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 晚上10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050年5月30日 凌晨1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月30日 凌晨1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 下午5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 下午5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 清晨5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 清晨5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 晚上11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 晚上11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 上午8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 上午8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 下午4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 下午4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 清晨6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 清晨6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 下午5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 下午5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年3月16日 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月16日 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 上午10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 上午10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 凌晨4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 凌晨4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 下午1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 下午1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年7月15日 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月15日 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年9月8日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月8日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 清晨5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 清晨5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030年5月29日 晚上8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月29日 晚上8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 清晨5:46:40" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年3月16日 下午5:00:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月16日 下午5:00:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 清晨6:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 清晨6:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 凌晨12:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 凌晨12:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 上午9:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 上午9:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年7月15日 下午5:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月15日 下午5:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 清晨5:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 清晨5:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年9月8日 下午6:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月8日 下午6:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 凌晨12:00:01 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 凌晨12:00:01 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午1:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午1:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 清晨7:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 清晨7:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030年5月29日 下午4:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月29日 下午4:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨12:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨12:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午1:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午1:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 凌晨1:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 凌晨1:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午2:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午2:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 上午8:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 上午8:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 下午5:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 下午5:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 凌晨2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 上午9:00:01 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 上午9:00:01 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 晚上9:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午3:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午3:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 凌晨12:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午8:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午8:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 晚上10:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 上午9:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 上午9:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午5:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午5:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 上午11:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 晚上8:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午5:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午5:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 清晨6:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 清晨6:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 上午11:30:01 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 上午11:30:01 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 凌晨12:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午6:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 凌晨3:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午10:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午10:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 凌晨1:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 凌晨1:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 下午1:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 下午1:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 凌晨2:00:00 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 凌晨2:00:00 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午4:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午4:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 上午11:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 上午11:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 晚上7:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨3:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 凌晨4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 上午10:00:01 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 上午10:00:01 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 晚上11:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午6:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午6:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 凌晨2:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午10:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午10:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 凌晨12:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 上午11:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 上午11:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 晚上11:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午5:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午5:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月30日 凌晨2:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 晚上11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 上午11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 上午11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 下午6:00:01 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 下午6:00:01 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 清晨6:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月30日 凌晨12:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 上午9:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 上午9:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 下午5:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 下午5:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 清晨7:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 清晨7:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 下午6:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 下午6:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 晚上10:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 下午4:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 下午4:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月30日 凌晨1:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 晚上10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 上午10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 上午10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 下午5:00:01 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 下午5:00:01 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 清晨5:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 晚上11:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 上午8:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 上午8:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 下午4:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 下午4:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 清晨6:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 下午5:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 下午5:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月16日 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 上午10:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 上午10:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 凌晨4:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 下午1:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 下午1:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月15日 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 上午10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 上午10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月8日 晚上10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 清晨5:00:01 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 下午5:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 下午5:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 上午11:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 上午11:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030年5月29日 晚上8:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月29日 晚上8:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 凌晨4:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 凌晨4:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 下午6:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 下午6:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年3月16日 星期六 下午5:00:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月16日 星期六 下午5:00:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 清晨6:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 清晨6:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 凌晨12:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 凌晨12:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 上午9:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 上午9:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年7月15日 星期二 下午5:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月15日 星期二 下午5:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 清晨5:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 清晨5:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年9月8日 星期六 下午6:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月8日 星期六 下午6:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 凌晨12:00:01 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 凌晨12:00:01 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午1:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午1:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 清晨7:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 清晨7:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030年5月29日 星期三 下午4:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月29日 星期三 下午4:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨12:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨12:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午1:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午1:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 凌晨1:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 凌晨1:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 凌晨1:00:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 凌晨1:00:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午2:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午2:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 上午8:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 上午8:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 下午5:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 下午5:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨1:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨1:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 凌晨2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 凌晨2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 上午9:00:01 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 上午9:00:01 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 晚上9:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 晚上9:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午3:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午3:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 凌晨12:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 凌晨12:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午8:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午8:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 晚上10:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 晚上10:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 上午9:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 上午9:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 凌晨3:30:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 凌晨3:30:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午5:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午5:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 上午11:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 上午11:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 晚上8:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 晚上8:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨3:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨3:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午5:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午5:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 清晨6:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 清晨6:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 上午11:30:01 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 上午11:30:01 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 星期二 凌晨12:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 星期二 凌晨12:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午6:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午6:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 凌晨3:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 凌晨3:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午10:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午10:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 星期二 凌晨1:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 星期二 凌晨1:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 下午1:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 下午1:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 凌晨2:00:00 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 凌晨2:00:00 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午4:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午4:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 上午11:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 上午11:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 晚上7:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 晚上7:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨3:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨3:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午4:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午4:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 凌晨4:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 凌晨4:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 上午10:00:01 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 上午10:00:01 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 晚上11:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 晚上11:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午6:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午6:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 凌晨2:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 凌晨2:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午10:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午10:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 星期二 凌晨12:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 星期二 凌晨12:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 上午11:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 上午11:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 上午10:00:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 上午10:00:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 晚上11:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 晚上11:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午5:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午5:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050年5月30日 星期一 凌晨2:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月30日 星期一 凌晨2:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午10:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午10:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 晚上11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 晚上11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 上午11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 上午11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 下午6:00:01 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 下午6:00:01 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 星期二 清晨6:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 星期二 清晨6:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年5月30日 星期三 凌晨12:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月30日 星期三 凌晨12:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 上午9:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 上午9:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 下午5:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 下午5:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 星期二 清晨7:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 星期二 清晨7:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 下午6:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 下午6:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 上午9:00:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 上午9:00:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 晚上10:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 晚上10:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午4:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午4:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050年5月30日 星期一 凌晨1:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月30日 星期一 凌晨1:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午9:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午9:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 晚上10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 晚上10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 上午10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 上午10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 下午5:00:01 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 下午5:00:01 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 星期二 清晨5:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 星期二 清晨5:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 晚上11:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 晚上11:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 上午8:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 上午8:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 下午4:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 下午4:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 星期二 清晨6:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 星期二 清晨6:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 下午5:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 下午5:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年3月16日 星期六 晚上9:00:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月16日 星期六 晚上9:00:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 上午10:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 上午10:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 凌晨4:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 凌晨4:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 下午1:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 下午1:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年7月15日 星期二 晚上9:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月15日 星期二 晚上9:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 上午10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 上午10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年9月8日 星期六 晚上10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月8日 星期六 晚上10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 清晨5:00:01 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 清晨5:00:01 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午5:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午5:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 上午11:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 上午11:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030年5月29日 星期三 晚上8:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月29日 星期三 晚上8:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨4:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨4:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午6:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午6:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 清晨5:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 清晨5:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年3月16日 星期六 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月16日 星期六 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年7月15日 星期二 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月15日 星期二 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年9月8日 星期六 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月8日 星期六 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午1:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午1:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 清晨7:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 清晨7:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030年5月29日 星期三 下午4:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月29日 星期三 下午4:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 凌晨1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 凌晨1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午2:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午2:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 上午8:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 上午8:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 下午5:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 下午5:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 凌晨2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 凌晨2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 晚上9:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 晚上9:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午3:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午3:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 凌晨12:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 凌晨12:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午8:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午8:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 上午9:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 上午9:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午5:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午5:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 上午11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 上午11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 晚上8:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 晚上8:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午5:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午5:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 清晨6:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 清晨6:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 上午11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 上午11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 星期二 凌晨12:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 星期二 凌晨12:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午6:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午6:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 凌晨3:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 凌晨3:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 星期二 凌晨1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 星期二 凌晨1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 下午1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 下午1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 凌晨2:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 凌晨2:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午4:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午4:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 晚上7:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 晚上7:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨3:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨3:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 凌晨4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 凌晨4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午6:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午6:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 星期二 凌晨12:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 星期二 凌晨12:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午5:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午5:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050年5月30日 星期一 凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月30日 星期一 凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 晚上11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 晚上11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 下午6:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 下午6:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 星期二 清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 星期二 清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年5月30日 星期三 凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月30日 星期三 凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 星期二 清晨7:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 星期二 清晨7:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年3月17日 星期日 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月17日 星期日 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 晚上10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 晚上10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 下午4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 下午4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050年5月30日 星期一 凌晨1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月30日 星期一 凌晨1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年7月3日 星期二 清晨5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月3日 星期二 清晨5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 晚上11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 晚上11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030年5月30日 星期四 上午8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月30日 星期四 上午8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 下午4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 下午4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1970年1月13日 星期二 清晨6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月13日 星期二 清晨6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 下午5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 下午5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年3月16日 星期六 晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月16日 星期六 晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 上午10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 上午10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 凌晨4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 凌晨4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050年5月29日 星期日 下午1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050年5月29日 星期日 下午1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年7月15日 星期二 晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月15日 星期二 晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年9月8日 星期六 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月8日 星期六 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年3月7日 星期四 清晨5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年3月7日 星期四 清晨5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年7月2日 星期一 下午5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年7月2日 星期一 下午5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年5月29日 星期二 上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年5月29日 星期二 上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030年5月29日 星期三 晚上8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030年5月29日 星期三 晚上8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年7月16日 星期三 凌晨4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年7月16日 星期三 凌晨4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1970年1月12日 星期一 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1970年1月12日 星期一 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年9月9日 星期日 清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年9月9日 星期日 清晨5:46" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024年3月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969年7月15日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月8日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024年3月7日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024年3月17日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024年3月7日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030年5月30日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024年3月17日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024年3月7日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001年7月3日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030年5月30日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1970年1月13日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024年3月17日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024年3月7日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030年5月30日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1970年1月13日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024年3月17日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050年5月30日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024年3月7日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001年7月3日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984年5月30日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030年5月30日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1970年1月13日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024年3月17日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050年5月30日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024年3月7日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001年7月3日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030年5月30日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1970年1月13日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001年9月9日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024年3月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969年7月15日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001年9月8日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024年3月7日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001年7月2日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030年5月29日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969年7月16日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1970年1月12日" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001年9月9日" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "下午5:00:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "清晨6:14:15 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "凌晨12:53:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "上午9:47:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "下午5:00:00 [GMT-7]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "清晨5:46:40 [PST]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "下午6:46:40 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "凌晨12:00:01 [PST]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "下午1:14:15 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "清晨7:53:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "下午4:47:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "凌晨12:00:00 [GMT-7]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "下午1:46:40 [PST]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "凌晨1:46:40 [PDT]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "凌晨1:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "下午2:14:15 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "上午8:53:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "下午5:47:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "凌晨1:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "下午2:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "凌晨2:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "上午9:00:01 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "晚上9:14:15 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "下午3:53:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "凌晨12:47:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "上午8:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "晚上10:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "上午9:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "凌晨3:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "下午5:44:15 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "上午11:23:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "晚上8:17:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "凌晨3:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "下午5:16:40 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "清晨6:16:40 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "上午11:30:01 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "凌晨12:44:15 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "下午6:23:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "凌晨3:17:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "上午10:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "凌晨1:16:40 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "下午1:16:40 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "凌晨2:00:00 [GMT+2]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "下午4:14:15 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "上午11:53:00 [GMT+4]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "晚上7:47:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "凌晨3:00:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "下午4:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "凌晨4:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "上午10:00:01 [GMT+2]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "晚上11:14:15 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "下午6:53:00 [GMT+4]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "凌晨2:47:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "上午10:00:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "凌晨12:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "上午11:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "上午10:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "晚上11:14:15 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "下午5:53:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "凌晨2:47:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "上午10:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "晚上11:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "上午11:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "下午6:00:01 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "清晨6:14:15 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "凌晨12:53:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "上午9:47:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "下午5:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "清晨7:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "下午6:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "上午9:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "晚上10:14:15 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "下午4:53:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "凌晨1:47:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "上午9:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "晚上10:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "上午10:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "下午5:00:01 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "清晨5:14:15 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "晚上11:53:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "上午8:47:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "下午4:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "清晨6:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "下午5:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "晚上9:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "上午10:14:15 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "凌晨4:53:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "下午1:47:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "晚上9:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "上午10:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "晚上10:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "清晨5:00:01 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "下午5:14:15 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "上午11:53:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "晚上8:47:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "凌晨4:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "下午6:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024/2/7 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024/2/7 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050/4/9 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050/4/9 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969/6/2 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/2 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001/7/21 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/21 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024/1/27 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024/1/27 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 下午1:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 下午1:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 清晨7:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 清晨7:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030/4/28 下午4:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030/4/28 下午4:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 下午1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 下午1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 凌晨1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 凌晨1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024/2/8 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024/2/8 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 下午2:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 下午2:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 上午8:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 上午8:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050/4/9 下午5:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050/4/9 下午5:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 下午2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 下午2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 凌晨2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 凌晨2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024/1/27 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024/1/27 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 晚上9:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 晚上9:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 下午3:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 下午3:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030/4/29 凌晨12:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030/4/29 凌晨12:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 上午8:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 上午8:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 上午9:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 上午9:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024/2/8 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024/2/8 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 下午5:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 下午5:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 上午11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 上午11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050/4/9 晚上8:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050/4/9 晚上8:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 下午5:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 下午5:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 清晨6:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 清晨6:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024/1/27 上午11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024/1/27 上午11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001/5/13 凌晨12:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/13 凌晨12:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 下午6:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 下午6:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030/4/29 凌晨3:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030/4/29 凌晨3:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 上午10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 上午10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969/12/6 凌晨1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/6 凌晨1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 下午1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 下午1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024/2/8 凌晨2:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024/2/8 凌晨2:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 下午4:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 下午4:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050/4/9 晚上7:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050/4/9 晚上7:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 凌晨3:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 凌晨3:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 下午4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 下午4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 凌晨4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 凌晨4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024/1/27 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024/1/27 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 下午6:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 下午6:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030/4/29 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030/4/29 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969/12/6 凌晨12:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/6 凌晨12:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024/2/8 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024/2/8 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 下午5:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 下午5:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050/4/10 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050/4/10 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 晚上11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 晚上11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024/1/27 下午6:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024/1/27 下午6:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001/5/13 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/13 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984/4/30 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/30 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030/4/29 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030/4/29 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969/12/6 清晨7:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/6 清晨7:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024/2/8 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024/2/8 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 晚上10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 晚上10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 下午4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 下午4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050/4/10 凌晨1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050/4/10 凌晨1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024/1/27 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024/1/27 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001/5/13 清晨5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/13 清晨5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 晚上11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 晚上11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030/4/29 上午8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030/4/29 上午8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 下午4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 下午4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969/12/6 清晨6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/6 清晨6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 下午5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 下午5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024/2/7 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024/2/7 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 上午10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 上午10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 凌晨4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 凌晨4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050/4/9 下午1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050/4/9 下午1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969/6/2 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/2 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001/7/21 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/21 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024/1/27 清晨5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024/1/27 清晨5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001/5/12 下午5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001/5/12 下午5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984/4/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984/4/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030/4/28 晚上8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030/4/28 晚上8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969/6/3 凌晨4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969/6/3 凌晨4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969/12/5 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969/12/5 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001/7/22 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001/7/22 清晨5:46" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年二月初七 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年二月初七 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050年四月初九 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050年四月初九 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初二 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初二 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿一 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿一 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024年正月廿七 凌晨12:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024年正月廿七 凌晨12:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 下午1:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 下午1:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 清晨7:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 清晨7:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030年四月廿八 下午4:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030年四月廿八 下午4:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 凌晨12:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 凌晨12:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 下午1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 下午1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 凌晨1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 凌晨1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年二月初八 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年二月初八 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 下午2:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 下午2:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 上午8:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 上午8:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050年四月初九 下午5:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050年四月初九 下午5:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 下午2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 下午2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 凌晨2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 凌晨2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024年正月廿七 上午9:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024年正月廿七 上午9:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 晚上9:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 晚上9:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 下午3:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 下午3:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030年四月廿九 凌晨12:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030年四月廿九 凌晨12:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 上午8:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 上午8:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 上午9:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 上午9:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年二月初八 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年二月初八 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 下午5:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 下午5:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 上午11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 上午11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050年四月初九 晚上8:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050年四月初九 晚上8:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 下午5:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 下午5:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 清晨6:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 清晨6:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024年正月廿七 上午11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024年正月廿七 上午11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十三 凌晨12:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十三 凌晨12:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 下午6:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 下午6:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030年四月廿九 凌晨3:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030年四月廿九 凌晨3:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 上午10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 上午10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初六 凌晨1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初六 凌晨1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 下午1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 下午1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年二月初八 凌晨2:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年二月初八 凌晨2:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 下午4:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 下午4:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050年四月初九 晚上7:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050年四月初九 晚上7:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 凌晨3:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 凌晨3:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 下午4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 下午4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 凌晨4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 凌晨4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024年正月廿七 上午10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024年正月廿七 上午10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 下午6:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 下午6:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030年四月廿九 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030年四月廿九 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初六 凌晨12:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初六 凌晨12:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年二月初八 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年二月初八 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 下午5:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 下午5:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050年四月初十 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050年四月初十 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 晚上11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 晚上11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024年正月廿七 下午6:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024年正月廿七 下午6:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十三 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十三 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984年四月三十 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月三十 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030年四月廿九 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030年四月廿九 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初六 清晨7:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初六 清晨7:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年二月初八 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年二月初八 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 晚上10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 晚上10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 下午4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 下午4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050年四月初十 凌晨1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050年四月初十 凌晨1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024年正月廿七 下午5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024年正月廿七 下午5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十三 清晨5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十三 清晨5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 晚上11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 晚上11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030年四月廿九 上午8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030年四月廿九 上午8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 下午4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 下午4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初六 清晨6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初六 清晨6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 下午5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 下午5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年二月初七 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年二月初七 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 上午10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 上午10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 凌晨4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 凌晨4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050年四月初九 下午1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050年四月初九 下午1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初二 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初二 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿一 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿一 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024年正月廿七 清晨5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024年正月廿七 清晨5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年五月十二 下午5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年五月十二 下午5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984年四月廿九 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984年四月廿九 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030年四月廿八 晚上8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030年四月廿八 晚上8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年六月初三 凌晨4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年六月初三 凌晨4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969年臘月初五 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969年臘月初五 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001年七月廿二 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001年七月廿二 清晨5:46:40" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初七 下午5:00:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初七 下午5:00:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 清晨6:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 清晨6:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 凌晨12:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 凌晨12:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 上午9:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 上午9:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初二 下午5:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初二 下午5:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 清晨5:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 清晨5:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿一 下午6:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿一 下午6:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 凌晨12:00:01 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 凌晨12:00:01 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 下午1:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 下午1:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 清晨7:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 清晨7:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿八 下午4:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿八 下午4:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 凌晨12:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 凌晨12:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 下午1:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 下午1:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 凌晨1:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 凌晨1:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 下午2:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 下午2:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 上午8:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 上午8:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 下午5:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 下午5:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 下午2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 下午2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 凌晨2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 凌晨2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 上午9:00:01 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 上午9:00:01 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 晚上9:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 晚上9:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 下午3:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 下午3:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 凌晨12:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 凌晨12:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 上午8:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 上午8:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 上午9:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 上午9:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 下午5:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 下午5:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 上午11:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 上午11:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 晚上8:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 晚上8:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 下午5:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 下午5:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 清晨6:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 清晨6:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 上午11:30:01 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 上午11:30:01 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 凌晨12:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 凌晨12:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 下午6:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 下午6:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 凌晨3:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 凌晨3:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 上午10:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 上午10:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 凌晨1:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 凌晨1:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 下午1:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 下午1:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 凌晨2:00:00 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 凌晨2:00:00 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 下午4:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 下午4:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 晚上7:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 晚上7:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 凌晨3:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 凌晨3:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 下午4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 下午4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 凌晨4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 凌晨4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 上午10:00:01 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 上午10:00:01 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 下午6:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 下午6:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 凌晨2:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 凌晨2:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 凌晨12:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 凌晨12:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 晚上11:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 下午5:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 下午5:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初十 凌晨2:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初十 凌晨2:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 晚上11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 晚上11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 上午11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 下午6:00:01 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 下午6:00:01 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 清晨6:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 清晨6:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月三十 凌晨12:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月三十 凌晨12:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 上午9:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 上午9:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 下午5:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 下午5:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 清晨7:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 清晨7:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 下午6:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 下午6:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 晚上10:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 晚上10:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 下午4:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 下午4:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初十 凌晨1:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初十 凌晨1:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 晚上10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 上午10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 上午10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 下午5:00:01 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 下午5:00:01 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 清晨5:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 清晨5:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 晚上11:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 晚上11:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 上午8:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 上午8:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 下午4:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 下午4:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 清晨6:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 清晨6:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 下午5:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 下午5:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初七 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初七 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 上午10:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 上午10:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 凌晨4:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 凌晨4:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 下午1:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 下午1:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初二 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初二 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 上午10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 上午10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿一 晚上10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿一 晚上10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 清晨5:00:01 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 清晨5:00:01 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 下午5:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 下午5:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 上午11:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿八 晚上8:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿八 晚上8:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 凌晨4:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 凌晨4:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 下午6:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 下午6:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初七 星期六 下午5:00:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初七 星期六 下午5:00:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 清晨6:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 清晨6:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 凌晨12:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 凌晨12:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 上午9:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 上午9:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初二 星期二 下午5:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初二 星期二 下午5:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 清晨5:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 清晨5:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿一 星期六 下午6:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿一 星期六 下午6:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 凌晨12:00:01 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 凌晨12:00:01 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午1:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午1:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 清晨7:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 清晨7:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿八 星期三 下午4:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿八 星期三 下午4:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨12:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨12:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午1:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午1:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 凌晨1:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 凌晨1:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 凌晨1:00:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 凌晨1:00:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午2:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午2:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 上午8:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 上午8:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 下午5:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 下午5:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨1:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨1:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 凌晨2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 凌晨2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 上午9:00:01 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 上午9:00:01 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 晚上9:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 晚上9:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午3:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午3:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 凌晨12:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 凌晨12:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午8:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午8:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 晚上10:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 晚上10:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 上午9:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 上午9:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 凌晨3:30:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 凌晨3:30:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午5:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午5:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 上午11:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 上午11:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 晚上8:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 晚上8:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨3:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨3:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午5:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午5:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 清晨6:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 清晨6:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 上午11:30:01 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 上午11:30:01 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 星期二 凌晨12:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 星期二 凌晨12:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午6:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午6:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 凌晨3:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 凌晨3:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午10:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午10:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 星期二 凌晨1:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 星期二 凌晨1:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 下午1:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 下午1:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 凌晨2:00:00 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 凌晨2:00:00 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午4:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午4:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 上午11:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 上午11:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 晚上7:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 晚上7:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨3:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨3:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午4:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午4:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 凌晨4:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 凌晨4:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 上午10:00:01 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 上午10:00:01 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 晚上11:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 晚上11:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午6:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午6:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 凌晨2:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 凌晨2:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午10:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午10:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 星期二 凌晨12:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 星期二 凌晨12:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 上午11:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 上午11:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 上午10:00:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 上午10:00:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 晚上11:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 晚上11:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午5:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午5:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初十 星期一 凌晨2:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初十 星期一 凌晨2:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午10:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午10:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 晚上11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 晚上11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 上午11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 上午11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 下午6:00:01 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 下午6:00:01 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 星期二 清晨6:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 星期二 清晨6:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月三十 星期三 凌晨12:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月三十 星期三 凌晨12:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 上午9:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 上午9:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 下午5:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 下午5:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 星期二 清晨7:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 星期二 清晨7:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 下午6:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 下午6:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 上午9:00:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 上午9:00:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 晚上10:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 晚上10:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午4:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午4:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初十 星期一 凌晨1:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初十 星期一 凌晨1:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午9:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午9:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 晚上10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 晚上10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 上午10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 上午10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 下午5:00:01 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 下午5:00:01 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 星期二 清晨5:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 星期二 清晨5:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 晚上11:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 晚上11:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 上午8:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 上午8:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 下午4:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 下午4:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 星期二 清晨6:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 星期二 清晨6:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 下午5:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 下午5:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初七 星期六 晚上9:00:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初七 星期六 晚上9:00:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 上午10:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 上午10:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 凌晨4:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 凌晨4:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 下午1:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 下午1:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初二 星期二 晚上9:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初二 星期二 晚上9:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 上午10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 上午10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿一 星期六 晚上10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿一 星期六 晚上10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 清晨5:00:01 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 清晨5:00:01 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午5:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午5:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 上午11:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 上午11:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿八 星期三 晚上8:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿八 星期三 晚上8:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨4:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨4:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午6:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午6:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 清晨5:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 清晨5:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初七 星期六 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初七 星期六 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初二 星期二 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初二 星期二 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿一 星期六 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿一 星期六 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午1:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午1:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 清晨7:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 清晨7:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿八 星期三 下午4:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿八 星期三 下午4:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 凌晨1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 凌晨1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午2:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午2:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 上午8:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 上午8:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 下午5:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 下午5:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 凌晨2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 凌晨2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 晚上9:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 晚上9:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午3:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午3:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 凌晨12:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 凌晨12:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午8:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午8:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 上午9:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 上午9:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午5:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午5:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 上午11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 上午11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 晚上8:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 晚上8:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午5:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午5:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 清晨6:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 清晨6:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 上午11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 上午11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 星期二 凌晨12:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 星期二 凌晨12:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午6:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午6:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 凌晨3:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 凌晨3:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 星期二 凌晨1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 星期二 凌晨1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 下午1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 下午1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 凌晨2:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 凌晨2:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午4:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午4:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 晚上7:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 晚上7:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨3:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨3:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 凌晨4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 凌晨4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午6:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午6:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 星期二 凌晨12:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 星期二 凌晨12:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午5:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午5:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初十 星期一 凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初十 星期一 凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 晚上11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 晚上11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 下午6:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 下午6:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 星期二 清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 星期二 清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月三十 星期三 凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月三十 星期三 凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 星期二 清晨7:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 星期二 清晨7:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初八 星期日 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初八 星期日 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 晚上10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 晚上10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 下午4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 下午4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初十 星期一 凌晨1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初十 星期一 凌晨1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十三 星期二 清晨5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十三 星期二 清晨5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 晚上11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 晚上11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿九 星期四 上午8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿九 星期四 上午8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 下午4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 下午4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初六 星期二 清晨6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初六 星期二 清晨6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 下午5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 下午5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年二月初七 星期六 晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年二月初七 星期六 晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 上午10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 上午10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 凌晨4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 凌晨4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2050庚午年四月初九 星期日 下午1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2050庚午年四月初九 星期日 下午1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初二 星期二 晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初二 星期二 晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿一 星期六 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿一 星期六 晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2024甲辰年正月廿七 星期四 清晨5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2024甲辰年正月廿七 星期四 清晨5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年五月十二 星期一 下午5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年五月十二 星期一 下午5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1984甲子年四月廿九 星期二 上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1984甲子年四月廿九 星期二 上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2030庚戌年四月廿八 星期三 晚上8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2030庚戌年四月廿八 星期三 晚上8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年六月初三 星期三 凌晨4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年六月初三 星期三 凌晨4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1969己酉年臘月初五 星期一 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1969己酉年臘月初五 星期一 下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2001辛巳年七月廿二 星期日 清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2001辛巳年七月廿二 星期日 清晨5:46" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "2024甲辰年二月初七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "2050庚午年四月初九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿一" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "2024甲辰年正月廿七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "2030庚戌年四月廿八" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "2024甲辰年二月初八" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "2050庚午年四月初九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "2024甲辰年正月廿七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "2030庚戌年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "2024甲辰年二月初八" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "2050庚午年四月初九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "2024甲辰年正月廿七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "2001辛巳年五月十三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "2030庚戌年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1969己酉年臘月初六" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2024甲辰年二月初八" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "2050庚午年四月初九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "2024甲辰年正月廿七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2030庚戌年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "1969己酉年臘月初六" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "2024甲辰年二月初八" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2050庚午年四月初十" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "2024甲辰年正月廿七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "2001辛巳年五月十三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "1984甲子年四月三十" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "2030庚戌年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "1969己酉年臘月初六" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "2024甲辰年二月初八" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "2050庚午年四月初十" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "2024甲辰年正月廿七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "2001辛巳年五月十三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "2030庚戌年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "1969己酉年臘月初六" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "2001辛巳年七月廿二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "2024甲辰年二月初七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "2050庚午年四月初九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿一" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "2024甲辰年正月廿七" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2001辛巳年五月十二" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "1984甲子年四月廿九" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "2030庚戌年四月廿八" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "1969己酉年六月初三" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "1969己酉年臘月初五" - }, - { - "dateLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "2001辛巳年七月廿二" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "下午5:00:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "清晨6:14:15 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "凌晨12:53:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "上午9:47:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "下午5:00:00 [GMT-7]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "清晨5:46:40 [PST]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "下午6:46:40 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "凌晨12:00:01 [PST]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "下午1:14:15 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "清晨7:53:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "下午4:47:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "凌晨12:00:00 [GMT-7]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "下午1:46:40 [PST]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "凌晨1:46:40 [PDT]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "凌晨1:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "下午2:14:15 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "上午8:53:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "下午5:47:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "凌晨1:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "下午2:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "凌晨2:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "上午9:00:01 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "晚上9:14:15 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "下午3:53:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "凌晨12:47:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "上午8:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "晚上10:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "上午9:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "凌晨3:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "下午5:44:15 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "上午11:23:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "晚上8:17:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "凌晨3:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "下午5:16:40 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "清晨6:16:40 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "上午11:30:01 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "凌晨12:44:15 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "下午6:23:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "凌晨3:17:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "上午10:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "凌晨1:16:40 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "下午1:16:40 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "凌晨2:00:00 [GMT+2]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "下午4:14:15 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "上午11:53:00 [GMT+4]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "晚上7:47:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "凌晨3:00:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "下午4:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "凌晨4:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "上午10:00:01 [GMT+2]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "晚上11:14:15 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "下午6:53:00 [GMT+4]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "凌晨2:47:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "上午10:00:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "凌晨12:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "上午11:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "上午10:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "晚上11:14:15 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "下午5:53:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "凌晨2:47:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "上午10:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "晚上11:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "上午11:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "下午6:00:01 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "清晨6:14:15 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "凌晨12:53:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "上午9:47:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "下午5:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "清晨7:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "下午6:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "上午9:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "晚上10:14:15 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "下午4:53:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "凌晨1:47:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "上午9:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "晚上10:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "上午10:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "下午5:00:01 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "清晨5:14:15 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "晚上11:53:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "上午8:47:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "下午4:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "清晨6:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "下午5:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "晚上9:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "上午10:14:15 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "凌晨4:53:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "下午1:47:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "晚上9:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "上午10:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "晚上10:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "清晨5:00:01 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "下午5:14:15 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "上午11:53:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "晚上8:47:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "凌晨4:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "下午6:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "chinese", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/16 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/16 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國139/5/29 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國139/5/29 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/15 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/15 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/8 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/8 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/7 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/7 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 下午1:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 下午1:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 清晨7:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 清晨7:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國119/5/29 下午4:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國119/5/29 下午4:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 凌晨12:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 下午1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 下午1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 凌晨1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 凌晨1:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/17 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/17 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 下午2:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 下午2:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 上午8:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 上午8:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國139/5/29 下午5:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國139/5/29 下午5:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 凌晨1:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 下午2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 下午2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 凌晨2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 凌晨2:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/7 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/7 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 晚上9:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 晚上9:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 下午3:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 下午3:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國119/5/30 凌晨12:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國119/5/30 凌晨12:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 上午8:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 上午8:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 上午9:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 上午9:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/17 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/17 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 下午5:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 下午5:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 上午11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 上午11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國139/5/29 晚上8:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國139/5/29 晚上8:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 凌晨3:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 下午5:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 下午5:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 清晨6:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 清晨6:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/7 上午11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/7 上午11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/3 凌晨12:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/3 凌晨12:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 下午6:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 下午6:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國119/5/30 凌晨3:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國119/5/30 凌晨3:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 上午10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 上午10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/13 凌晨1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/13 凌晨1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 下午1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 下午1:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/17 凌晨2:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/17 凌晨2:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 下午4:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 下午4:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國139/5/29 晚上7:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國139/5/29 晚上7:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 凌晨3:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 凌晨3:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 下午4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 下午4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 凌晨4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 凌晨4:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/7 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/7 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 下午6:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 下午6:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國119/5/30 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國119/5/30 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/13 凌晨12:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/13 凌晨12:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/17 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/17 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 晚上11:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 下午5:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 下午5:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國139/5/30 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國139/5/30 凌晨2:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 上午10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 晚上11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 晚上11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 上午11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/7 下午6:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/7 下午6:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/3 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/3 清晨6:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/30 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/30 凌晨12:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國119/5/30 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國119/5/30 上午9:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/13 清晨7:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/13 清晨7:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/17 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/17 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 晚上10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 晚上10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 下午4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 下午4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國139/5/30 凌晨1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國139/5/30 凌晨1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 上午9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/7 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/7 下午5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/3 清晨5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/3 清晨5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 晚上11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 晚上11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國119/5/30 上午8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國119/5/30 上午8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 下午4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 下午4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/13 清晨6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/13 清晨6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 下午5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 下午5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/16 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/16 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 上午10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 上午10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 凌晨4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 凌晨4:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國139/5/29 下午1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國139/5/29 下午1:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/15 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/15 晚上9:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 上午10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/8 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/8 晚上10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113/3/7 清晨5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113/3/7 清晨5:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90/7/2 下午5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90/7/2 下午5:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73/5/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73/5/29 上午11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國119/5/29 晚上8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國119/5/29 晚上8:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58/7/16 凌晨4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58/7/16 凌晨4:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59/1/12 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59/1/12 下午6:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90/9/9 清晨5:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90/9/9 清晨5:46" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月16日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月16日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月15日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月15日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月8日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月8日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 凌晨12:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 凌晨12:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午1:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午1:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 清晨7:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 清晨7:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月29日 下午4:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月29日 下午4:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨12:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨12:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 凌晨1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 凌晨1:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午2:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午2:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 上午8:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 上午8:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 下午5:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 下午5:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨1:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 凌晨2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 凌晨2:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 上午9:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 上午9:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 晚上9:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 晚上9:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午3:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午3:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 凌晨12:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 凌晨12:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午8:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午8:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 上午9:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 上午9:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午5:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午5:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 上午11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 上午11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 晚上8:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 晚上8:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨3:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午5:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午5:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 清晨6:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 清晨6:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 上午11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 上午11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 凌晨12:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 凌晨12:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午6:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午6:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 凌晨3:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 凌晨3:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 凌晨1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 凌晨1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 下午1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 下午1:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 凌晨2:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 凌晨2:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午4:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午4:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 晚上7:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 晚上7:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨3:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨3:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 凌晨4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 凌晨4:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 上午10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 上午10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午6:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午6:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 凌晨12:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 凌晨12:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 晚上11:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午5:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午5:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月30日 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月30日 凌晨2:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 晚上11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 晚上11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 上午11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 下午6:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 下午6:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 清晨6:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月30日 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月30日 凌晨12:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 上午9:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 下午5:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 清晨7:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 清晨7:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 晚上10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 晚上10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月30日 凌晨1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月30日 凌晨1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 下午5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 下午5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 清晨5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 清晨5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 晚上11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 晚上11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 上午8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 上午8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 下午4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 下午4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 清晨6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 清晨6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 下午5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 下午5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月16日 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月16日 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 上午10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 上午10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 凌晨4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 凌晨4:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 下午1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 下午1:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月15日 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月15日 晚上9:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 上午10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月8日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月8日 晚上10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 清晨5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 清晨5:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午5:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 上午11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月29日 晚上8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月29日 晚上8:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨4:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午6:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 清晨5:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 清晨5:46:40" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月16日 下午5:00:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月16日 下午5:00:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 清晨6:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 清晨6:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 凌晨12:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 凌晨12:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 上午9:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 上午9:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月15日 下午5:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月15日 下午5:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 清晨5:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 清晨5:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月8日 下午6:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月8日 下午6:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 凌晨12:00:01 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 凌晨12:00:01 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午1:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午1:14:15 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 清晨7:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 清晨7:53:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月29日 下午4:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月29日 下午4:47:00 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨12:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨12:00:00 [GMT-7]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午1:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午1:46:40 [PST]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 凌晨1:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 凌晨1:46:40 [PDT]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午2:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午2:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 上午8:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 上午8:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 下午5:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 下午5:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨1:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 凌晨2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 凌晨2:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 上午9:00:01 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 上午9:00:01 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 晚上9:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 晚上9:14:15 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午3:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午3:53:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 凌晨12:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 凌晨12:47:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午8:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午8:00:00 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 上午9:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 上午9:46:40 [GMT+1]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午5:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午5:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 上午11:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 上午11:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 晚上8:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 晚上8:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨3:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午5:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午5:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 清晨6:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 清晨6:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 上午11:30:01 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 上午11:30:01 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 凌晨12:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 凌晨12:44:15 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午6:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午6:23:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 凌晨3:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 凌晨3:17:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午10:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午10:30:00 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 凌晨1:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 凌晨1:16:40 [GMT+3:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 下午1:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 下午1:16:40 [GMT+4:30]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 凌晨2:00:00 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 凌晨2:00:00 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午4:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午4:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 上午11:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 上午11:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 晚上7:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 晚上7:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨3:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨3:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 凌晨4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 凌晨4:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 上午10:00:01 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 上午10:00:01 [GMT+2]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午6:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午6:53:00 [GMT+4]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 凌晨2:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 凌晨2:47:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午10:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午10:00:00 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 凌晨12:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 凌晨12:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 上午11:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 上午11:46:40 [GMT+3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 晚上11:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午5:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午5:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月30日 凌晨2:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月30日 凌晨2:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午10:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 晚上11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 晚上11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 上午11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 上午11:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 下午6:00:01 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 下午6:00:01 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 清晨6:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 清晨6:14:15 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月30日 凌晨12:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月30日 凌晨12:53:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 上午9:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 上午9:47:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 下午5:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 下午5:00:00 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 清晨7:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 清晨7:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 下午6:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 下午6:46:40 [GMT+10]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 晚上10:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 晚上10:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 下午4:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 下午4:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月30日 凌晨1:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月30日 凌晨1:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 上午9:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 晚上10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 上午10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 上午10:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 下午5:00:01 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 下午5:00:01 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 清晨5:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 清晨5:14:15 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 晚上11:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 晚上11:53:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 上午8:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 上午8:47:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 下午4:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 下午4:00:00 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 清晨6:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 清晨6:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 下午5:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 下午5:46:40 [GMT+9]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月16日 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月16日 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 上午10:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 上午10:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 凌晨4:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 凌晨4:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 下午1:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 下午1:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月15日 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月15日 晚上9:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 上午10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 上午10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月8日 晚上10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月8日 晚上10:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 清晨5:00:01 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 清晨5:00:01 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 下午5:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 下午5:14:15 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 上午11:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 上午11:53:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月29日 晚上8:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月29日 晚上8:47:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 凌晨4:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 凌晨4:00:00 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 下午6:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 下午6:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月16日 星期六下午5:00:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月16日 星期六下午5:00:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一清晨6:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一清晨6:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二凌晨12:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二凌晨12:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日上午9:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日上午9:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月15日 星期二下午5:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月15日 星期二下午5:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一清晨5:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一清晨5:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月8日 星期六下午6:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月8日 星期六下午6:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四凌晨12:00:01 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四凌晨12:00:01 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午1:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午1:14:15 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二清晨7:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二清晨7:53:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月29日 星期三下午4:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月29日 星期三下午4:47:00 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨12:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨12:00:00 [GMT-07:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午1:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午1:46:40 [太平洋標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日凌晨1:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日凌晨1:46:40 [太平洋夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日凌晨1:00:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日凌晨1:00:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午2:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午2:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二上午8:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二上午8:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日下午5:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日下午5:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨1:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨1:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日凌晨2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日凌晨2:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四上午9:00:01 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四上午9:00:01 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一晚上9:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一晚上9:14:15 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午3:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午3:53:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四凌晨12:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四凌晨12:47:00 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午8:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午8:00:00 [GMT+01:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一晚上10:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一晚上10:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日上午9:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日上午9:46:40 [西非標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日凌晨3:30:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日凌晨3:30:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午5:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午5:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二上午11:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二上午11:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日晚上8:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日晚上8:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨3:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨3:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午5:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午5:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日清晨6:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日清晨6:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四上午11:30:01 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四上午11:30:01 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 星期二凌晨12:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 星期二凌晨12:44:15 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午6:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午6:23:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四凌晨3:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四凌晨3:17:00 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午10:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午10:30:00 [GMT+03:30]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 星期二凌晨1:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 星期二凌晨1:16:40 [伊朗標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日下午1:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日下午1:16:40 [伊朗夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日凌晨2:00:00 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日凌晨2:00:00 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午4:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午4:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二上午11:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二上午11:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日晚上7:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日晚上7:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨3:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨3:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午4:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午4:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日凌晨4:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日凌晨4:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四上午10:00:01 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四上午10:00:01 [東歐標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一晚上11:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一晚上11:14:15 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午6:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午6:53:00 [莫斯科夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四凌晨2:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四凌晨2:47:00 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午10:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午10:00:00 [GMT+03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 星期二凌晨12:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 星期二凌晨12:46:40 [莫斯科標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日上午11:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日上午11:46:40 [東歐夏令時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日上午10:00:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日上午10:00:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一晚上11:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一晚上11:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午5:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午5:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月30日 星期一凌晨2:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月30日 星期一凌晨2:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午10:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午10:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一晚上11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一晚上11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日上午11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日上午11:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四下午6:00:01 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四下午6:00:01 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 星期二清晨6:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 星期二清晨6:14:15 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月30日 星期三凌晨12:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月30日 星期三凌晨12:53:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四上午9:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四上午9:47:00 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三下午5:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三下午5:00:00 [GMT+10:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 星期二清晨7:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 星期二清晨7:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日下午6:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日下午6:46:40 [澳洲東部標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日上午9:00:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日上午9:00:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一晚上10:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一晚上10:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午4:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午4:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月30日 星期一凌晨1:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月30日 星期一凌晨1:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午9:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午9:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一晚上10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一晚上10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日上午10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日上午10:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四下午5:00:01 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四下午5:00:01 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 星期二清晨5:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 星期二清晨5:14:15 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二晚上11:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二晚上11:53:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四上午8:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四上午8:47:00 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三下午4:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三下午4:00:00 [GMT+09:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 星期二清晨6:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 星期二清晨6:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日下午5:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日下午5:46:40 [帛琉時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月16日 星期六晚上9:00:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月16日 星期六晚上9:00:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一上午10:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一上午10:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二凌晨4:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二凌晨4:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日下午1:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日下午1:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月15日 星期二晚上9:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月15日 星期二晚上9:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一上午10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一上午10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月8日 星期六晚上10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月8日 星期六晚上10:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四清晨5:00:01 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四清晨5:00:01 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午5:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午5:14:15 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二上午11:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二上午11:53:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月29日 星期三晚上8:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月29日 星期三晚上8:47:00 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨4:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨4:00:00 [GMT-03:00]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午6:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午6:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日清晨5:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日清晨5:46:40 [烏拉圭標準時間]" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月16日 星期六下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月16日 星期六下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月15日 星期二下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月15日 星期二下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月8日 星期六下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月8日 星期六下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午1:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午1:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二清晨7:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二清晨7:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月29日 星期三下午4:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月29日 星期三下午4:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨12:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日凌晨1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日凌晨1:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午2:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午2:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二上午8:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二上午8:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日下午5:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日下午5:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨1:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日凌晨2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日凌晨2:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一晚上9:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一晚上9:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午3:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午3:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四凌晨12:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四凌晨12:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午8:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午8:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日上午9:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日上午9:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午5:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午5:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二上午11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二上午11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日晚上8:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日晚上8:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨3:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午5:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午5:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日清晨6:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日清晨6:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四上午11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四上午11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 星期二凌晨12:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 星期二凌晨12:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午6:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午6:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四凌晨3:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四凌晨3:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 星期二凌晨1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 星期二凌晨1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日下午1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日下午1:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日凌晨2:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日凌晨2:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午4:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午4:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日晚上7:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日晚上7:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨3:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨3:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日凌晨4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日凌晨4:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午6:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午6:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 星期二凌晨12:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 星期二凌晨12:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一晚上11:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午5:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午5:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月30日 星期一凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月30日 星期一凌晨2:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一晚上11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一晚上11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日上午11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四下午6:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四下午6:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 星期二清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 星期二清晨6:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月30日 星期三凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月30日 星期三凌晨12:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四上午9:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 星期二清晨7:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 星期二清晨7:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月17日 星期日上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月17日 星期日上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一晚上10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一晚上10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二下午4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二下午4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月30日 星期一凌晨1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月30日 星期一凌晨1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三上午9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四下午5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月3日 星期二清晨5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月3日 星期二清晨5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二晚上11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二晚上11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月30日 星期四上午8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月30日 星期四上午8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三下午4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三下午4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月13日 星期二清晨6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月13日 星期二清晨6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日下午5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日下午5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月16日 星期六晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月16日 星期六晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一上午10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一上午10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二凌晨4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二凌晨4:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國139年5月29日 星期日下午1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國139年5月29日 星期日下午1:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月15日 星期二晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月15日 星期二晚上9:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一上午10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月8日 星期六晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月8日 星期六晚上10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國113年3月7日 星期四清晨5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國113年3月7日 星期四清晨5:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年7月2日 星期一下午5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年7月2日 星期一下午5:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國73年5月29日 星期二上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國73年5月29日 星期二上午11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國119年5月29日 星期三晚上8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國119年5月29日 星期三晚上8:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國58年7月16日 星期三凌晨4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國58年7月16日 星期三凌晨4:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國59年1月12日 星期一下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國59年1月12日 星期一下午6:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "民國90年9月9日 星期日清晨5:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "民國90年9月9日 星期日清晨5:46" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "民國113年3月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "民國139年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月15日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月8日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "民國113年3月7日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "民國119年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "民國113年3月17日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "民國139年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "民國113年3月7日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "民國119年5月30日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "民國113年3月17日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "民國139年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "民國113年3月7日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "民國90年7月3日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "民國119年5月30日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "民國59年1月13日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "民國113年3月17日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "民國139年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "民國113年3月7日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "民國119年5月30日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "民國59年1月13日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "民國113年3月17日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "民國139年5月30日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "民國113年3月7日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "民國90年7月3日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "民國73年5月30日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "民國119年5月30日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "民國59年1月13日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "民國113年3月17日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "民國139年5月30日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "民國113年3月7日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "民國90年7月3日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "民國119年5月30日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "民國59年1月13日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "民國90年9月9日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "民國113年3月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "民國139年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "民國58年7月15日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月8日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "民國113年3月7日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "民國90年7月2日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "民國73年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "民國119年5月29日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "民國58年7月16日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "民國59年1月12日" - }, - { - "dateLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "民國90年9月9日" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "下午5:00:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "清晨6:14:15 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "凌晨12:53:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "上午9:47:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "下午5:00:00 [GMT-7]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "清晨5:46:40 [PST]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "下午6:46:40 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "凌晨12:00:01 [PST]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "下午1:14:15 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "清晨7:53:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "下午4:47:00 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "凌晨12:00:00 [GMT-7]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "下午1:46:40 [PST]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "凌晨1:46:40 [PDT]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "凌晨1:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "下午2:14:15 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "上午8:53:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "下午5:47:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "凌晨1:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "下午2:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "凌晨2:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "上午9:00:01 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "晚上9:14:15 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "下午3:53:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "凌晨12:47:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "上午8:00:00 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "晚上10:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "上午9:46:40 [GMT+1]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "凌晨3:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "下午5:44:15 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "上午11:23:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "晚上8:17:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "凌晨3:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "下午5:16:40 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "清晨6:16:40 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "上午11:30:01 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "凌晨12:44:15 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "下午6:23:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "凌晨3:17:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "上午10:30:00 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "凌晨1:16:40 [GMT+3:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "下午1:16:40 [GMT+4:30]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "凌晨2:00:00 [GMT+2]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "下午4:14:15 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "上午11:53:00 [GMT+4]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "晚上7:47:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "凌晨3:00:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "下午4:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "凌晨4:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "上午10:00:01 [GMT+2]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "晚上11:14:15 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "下午6:53:00 [GMT+4]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "凌晨2:47:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "上午10:00:00 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "凌晨12:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "上午11:46:40 [GMT+3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "上午10:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "晚上11:14:15 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "下午5:53:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "凌晨2:47:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "上午10:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "晚上11:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "上午11:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "下午6:00:01 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "清晨6:14:15 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "凌晨12:53:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "上午9:47:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "下午5:00:00 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "清晨7:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "下午6:46:40 [GMT+10]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "上午9:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "晚上10:14:15 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "下午4:53:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "凌晨1:47:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "上午9:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "晚上10:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "上午10:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "下午5:00:01 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "清晨5:14:15 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "晚上11:53:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "上午8:47:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "下午4:00:00 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "清晨6:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "下午5:46:40 [GMT+9]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "晚上9:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "上午10:14:15 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "凌晨4:53:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "下午1:47:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "晚上9:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "上午10:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "晚上10:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "清晨5:00:01 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "下午5:14:15 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "上午11:53:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "晚上8:47:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "凌晨4:00:00 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "下午6:46:40 [GMT-3]" - }, - { - "timeLength": "long", - "calendar": "roc", - "locale": "zh-Hant-TW", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "清晨5:46:40 [GMT-3]" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00 16/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "17:00 16/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "06:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "06:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "00:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "09:47 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "09:47 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00 15/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "17:00 15/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "05:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "05:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "18:46 8/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "18:46 8/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "00:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "13:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "07:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "07:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16:47 29/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16:47 29/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "00:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "13:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "01:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "01:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "01:00 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "14:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "08:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17:47 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "17:47 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "01:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "14:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "02:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "09:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "21:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "15:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "15:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "00:47 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "00:47 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "08:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "22:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "22:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "09:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "03:30 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:44 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17:44 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:23 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "11:23 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "20:17 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "20:17 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "03:30 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:16 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17:16 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "06:16 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "06:16 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:30 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "11:30 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "00:44 3/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "00:44 3/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "18:23 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "18:23 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:17 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "03:17 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "10:30 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "10:30 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "01:16 13/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "01:16 13/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13:16 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "13:16 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:00 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "02:00 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "19:47 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "19:47 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "03:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "03:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "04:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "04:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "10:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "23:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "23:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "18:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "18:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:47 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "02:47 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "10:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "00:46 13/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "00:46 13/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "10:00 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "23:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "02:47 30/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "02:47 30/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "10:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "23:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "11:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "11:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "18:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "06:14 3/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "06:14 3/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "00:53 30/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "00:53 30/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09:47 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "09:47 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "07:46 13/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "07:46 13/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "18:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "09:00 17/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "22:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "01:47 30/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "01:47 30/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "09:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "22:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "10:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "10:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "05:14 3/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "05:14 3/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "23:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "23:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "08:47 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "08:47 30/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "06:46 13/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "06:46 13/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00 16/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "21:00 16/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "10:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "04:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "13:47 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "13:47 29/5/50" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00 15/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "21:00 15/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "10:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "22:46 8/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "22:46 8/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "05:00 7/3/24" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "17:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "17:14 2/7/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "11:53 29/5/84" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "20:47 29/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "20:47 29/5/30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "04:00 16/7/69" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "18:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "18:46 12/1/70" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:46 9/9/01" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "05:46 9/9/01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 16 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "17:00:00 16 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "06:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "06:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "00:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "09:47:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "09:47:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 15 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "17:00:00 15 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "05:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "05:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 8 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "18:46:40 8 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "00:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "13:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "07:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "07:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16:47:00 29 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16:47:00 29 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "00:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "13:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "01:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "01:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "01:00:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "14:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "08:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17:47:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "17:47:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "01:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "14:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "02:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "09:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "21:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "15:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "15:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "00:47:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "00:47:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "08:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "22:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "09:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "03:30:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:44:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17:44:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:23:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "11:23:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "20:17:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "20:17:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "03:30:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:16:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17:16:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "06:16:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "06:16:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:30:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "11:30:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "00:44:15 3 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "00:44:15 3 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "18:23:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "18:23:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:17:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "03:17:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "10:30:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "10:30:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "01:16:40 13 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "01:16:40 13 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13:16:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "13:16:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:00:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "02:00:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "19:47:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "19:47:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "03:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "03:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "04:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "04:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "10:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "23:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "23:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "18:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "18:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:47:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "02:47:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "10:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "00:46:40 13 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "00:46:40 13 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "10:00:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "23:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "02:47:00 30 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "02:47:00 30 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "10:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "23:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "11:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "11:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "18:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "06:14:15 3 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "06:14:15 3 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "00:53:00 30 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "00:53:00 30 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09:47:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "09:47:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "07:46:40 13 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "07:46:40 13 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "18:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "09:00:00 17 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "22:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "01:47:00 30 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "01:47:00 30 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "09:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "22:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "10:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "10:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "05:14:15 3 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "05:14:15 3 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "23:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "23:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "08:47:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "08:47:00 30 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "06:46:40 13 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "06:46:40 13 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00:00 16 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "21:00:00 16 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "10:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "04:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "13:47:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "13:47:00 29 thg 5, 2050" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00:00 15 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "21:00:00 15 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "10:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 8 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "22:46:40 8 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "05:00:01 7 thg 3, 2024" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "17:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "17:14:15 2 thg 7, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "11:53:00 29 thg 5, 1984" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "20:47:00 29 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "20:47:00 29 thg 5, 2030" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "04:00:00 16 thg 7, 1969" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "18:46:40 12 thg 1, 1970" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:46:40 9 thg 9, 2001" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "05:46:40 9 thg 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 PDT 16 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00:00 PDT 16 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "06:14:15 PDT 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:14:15 PDT 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:53:00 PDT 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:53:00 PDT 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "09:47:00 PDT 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:47:00 PDT 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 GMT-7 15 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00:00 GMT-7 15 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "05:46:40 PST 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:46:40 PST 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 PDT 8 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46:40 PDT 8 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00:01 PST 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:00:01 PST 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:14:15 PDT 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:14:15 PDT 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "07:53:00 PDT 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 07:53:00 PDT 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16:47:00 PDT 29 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:47:00 PDT 29 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00:00 GMT-7 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:00:00 GMT-7 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:46:40 PST 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:46:40 PST 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "01:46:40 PDT 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:46:40 PDT 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00:00 GMT+1 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:00:00 GMT+1 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:14:15 GMT+1 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 14:14:15 GMT+1 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:53:00 GMT+1 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:53:00 GMT+1 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17:47:00 GMT+1 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:47:00 GMT+1 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00:00 GMT+1 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:00:00 GMT+1 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:46:40 GMT+1 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 14:46:40 GMT+1 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02:46:40 GMT+1 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:46:40 GMT+1 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:00:01 GMT+1 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00:01 GMT+1 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21:14:15 GMT+1 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:14:15 GMT+1 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "15:53:00 GMT+1 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 15:53:00 GMT+1 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "00:47:00 GMT+1 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:47:00 GMT+1 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:00:00 GMT+1 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:00:00 GMT+1 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 GMT+1 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46:40 GMT+1 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:46:40 GMT+1 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:46:40 GMT+1 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30:00 GMT+3:30 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:30:00 GMT+3:30 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:44:15 GMT+4:30 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:44:15 GMT+4:30 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:23:00 GMT+3:30 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:23:00 GMT+3:30 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "20:17:00 GMT+3:30 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 20:17:00 GMT+3:30 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30:00 GMT+3:30 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:30:00 GMT+3:30 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:16:40 GMT+3:30 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:16:40 GMT+3:30 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "06:16:40 GMT+4:30 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:16:40 GMT+4:30 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:30:01 GMT+3:30 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:30:01 GMT+3:30 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "00:44:15 GMT+4:30 3 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:44:15 GMT+4:30 3 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "18:23:00 GMT+3:30 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:23:00 GMT+3:30 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:17:00 GMT+3:30 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:17:00 GMT+3:30 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "10:30:00 GMT+3:30 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:30:00 GMT+3:30 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "01:16:40 GMT+3:30 13 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:16:40 GMT+3:30 13 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13:16:40 GMT+4:30 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:16:40 GMT+4:30 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:00:00 GMT+2 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:00:00 GMT+2 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:14:15 GMT+3 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:14:15 GMT+3 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:53:00 GMT+4 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:53:00 GMT+4 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "19:47:00 GMT+3 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 19:47:00 GMT+3 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "03:00:00 GMT+3 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:00:00 GMT+3 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:46:40 GMT+3 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:46:40 GMT+3 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "04:46:40 GMT+3 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:46:40 GMT+3 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00:01 GMT+2 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00:01 GMT+2 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "23:14:15 GMT+3 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:14:15 GMT+3 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "18:53:00 GMT+4 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:53:00 GMT+4 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:47:00 GMT+3 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:47:00 GMT+3 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 GMT+3 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00:00 GMT+3 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "00:46:40 GMT+3 13 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:46:40 GMT+3 13 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:46:40 GMT+3 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:46:40 GMT+3 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 GMT+10 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00:00 GMT+10 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:14:15 GMT+10 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:14:15 GMT+10 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:53:00 GMT+10 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:53:00 GMT+10 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "02:47:00 GMT+10 30 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:47:00 GMT+10 30 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 GMT+10 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00:00 GMT+10 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:46:40 GMT+10 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:46:40 GMT+10 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "11:46:40 GMT+10 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:46:40 GMT+10 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:00:01 GMT+10 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:00:01 GMT+10 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "06:14:15 GMT+10 3 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:14:15 GMT+10 3 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "00:53:00 GMT+10 30 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:53:00 GMT+10 30 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09:47:00 GMT+10 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:47:00 GMT+10 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 GMT+10 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00:00 GMT+10 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "07:46:40 GMT+10 13 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 07:46:40 GMT+10 13 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 GMT+10 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46:40 GMT+10 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00:00 GMT+9 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00:00 GMT+9 17 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:14:15 GMT+9 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:14:15 GMT+9 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:53:00 GMT+9 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:53:00 GMT+9 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "01:47:00 GMT+9 30 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:47:00 GMT+9 30 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00:00 GMT+9 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00:00 GMT+9 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 GMT+9 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46:40 GMT+9 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "10:46:40 GMT+9 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:46:40 GMT+9 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:00:01 GMT+9 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00:01 GMT+9 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "05:14:15 GMT+9 3 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:14:15 GMT+9 3 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "23:53:00 GMT+9 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:53:00 GMT+9 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "08:47:00 GMT+9 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:47:00 GMT+9 30 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:00:00 GMT+9 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:00:00 GMT+9 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "06:46:40 GMT+9 13 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:46:40 GMT+9 13 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:46:40 GMT+9 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:46:40 GMT+9 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00:00 GMT-3 16 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:00:00 GMT-3 16 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:14:15 GMT-3 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:14:15 GMT-3 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:53:00 GMT-3 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:53:00 GMT-3 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "13:47:00 GMT-3 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:47:00 GMT-3 29 tháng 5, 2050" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00:00 GMT-3 15 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:00:00 GMT-3 15 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:46:40 GMT-3 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:46:40 GMT-3 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 GMT-3 8 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46:40 GMT-3 8 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:00:01 GMT-3 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:00:01 GMT-3 7 tháng 3, 2024" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "17:14:15 GMT-3 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:14:15 GMT-3 2 tháng 7, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11:53:00 GMT-3 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:53:00 GMT-3 29 tháng 5, 1984" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "20:47:00 GMT-3 29 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 20:47:00 GMT-3 29 tháng 5, 2030" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:00:00 GMT-3 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:00:00 GMT-3 16 tháng 7, 1969" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 GMT-3 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46:40 GMT-3 12 tháng 1, 1970" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:46:40 GMT-3 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:46:40 GMT-3 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 Giờ mùa hè Thái Bình Dương Thứ Bảy, 16 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00:00 Giờ mùa hè Thái Bình Dương Thứ Bảy, 16 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "06:14:15 Giờ mùa hè Thái Bình Dương Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:14:15 Giờ mùa hè Thái Bình Dương Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:53:00 Giờ mùa hè Thái Bình Dương Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:53:00 Giờ mùa hè Thái Bình Dương Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "09:47:00 Giờ mùa hè Thái Bình Dương Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:47:00 Giờ mùa hè Thái Bình Dương Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 GMT-07:00 Thứ Ba, 15 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00:00 GMT-07:00 Thứ Ba, 15 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "05:46:40 Giờ chuẩn Thái Bình Dương Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:46:40 Giờ chuẩn Thái Bình Dương Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 Giờ mùa hè Thái Bình Dương Thứ Bảy, 8 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46:40 Giờ mùa hè Thái Bình Dương Thứ Bảy, 8 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00:01 Giờ chuẩn Thái Bình Dương Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:00:01 Giờ chuẩn Thái Bình Dương Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:14:15 Giờ mùa hè Thái Bình Dương Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:14:15 Giờ mùa hè Thái Bình Dương Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "07:53:00 Giờ mùa hè Thái Bình Dương Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 07:53:00 Giờ mùa hè Thái Bình Dương Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16:47:00 Giờ mùa hè Thái Bình Dương Thứ Tư, 29 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:47:00 Giờ mùa hè Thái Bình Dương Thứ Tư, 29 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00:00 GMT-07:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:00:00 GMT-07:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:46:40 Giờ chuẩn Thái Bình Dương Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:46:40 Giờ chuẩn Thái Bình Dương Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "01:46:40 Giờ mùa hè Thái Bình Dương Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:46:40 Giờ mùa hè Thái Bình Dương Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00:00 Giờ Chuẩn Tây Phi Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:00:00 Giờ Chuẩn Tây Phi Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:14:15 Giờ Chuẩn Tây Phi Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 14:14:15 Giờ Chuẩn Tây Phi Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:53:00 Giờ Chuẩn Tây Phi Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:53:00 Giờ Chuẩn Tây Phi Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17:47:00 Giờ Chuẩn Tây Phi Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:47:00 Giờ Chuẩn Tây Phi Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00:00 GMT+01:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:00:00 GMT+01:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:46:40 Giờ Chuẩn Tây Phi Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 14:46:40 Giờ Chuẩn Tây Phi Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02:46:40 Giờ Chuẩn Tây Phi Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:46:40 Giờ Chuẩn Tây Phi Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:00:01 Giờ Chuẩn Tây Phi Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00:01 Giờ Chuẩn Tây Phi Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21:14:15 Giờ Chuẩn Tây Phi Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:14:15 Giờ Chuẩn Tây Phi Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "15:53:00 Giờ Chuẩn Tây Phi Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 15:53:00 Giờ Chuẩn Tây Phi Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "00:47:00 Giờ Chuẩn Tây Phi Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:47:00 Giờ Chuẩn Tây Phi Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:00:00 GMT+01:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:00:00 GMT+01:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 Giờ Chuẩn Tây Phi Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46:40 Giờ Chuẩn Tây Phi Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:46:40 Giờ Chuẩn Tây Phi Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:46:40 Giờ Chuẩn Tây Phi Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30:00 Giờ Chuẩn Iran Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:30:00 Giờ Chuẩn Iran Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:44:15 Giờ Mùa Hè Iran Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:44:15 Giờ Mùa Hè Iran Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:23:00 Giờ Chuẩn Iran Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:23:00 Giờ Chuẩn Iran Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "20:17:00 Giờ Chuẩn Iran Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 20:17:00 Giờ Chuẩn Iran Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30:00 GMT+03:30 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:30:00 GMT+03:30 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:16:40 Giờ Chuẩn Iran Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:16:40 Giờ Chuẩn Iran Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "06:16:40 Giờ Mùa Hè Iran Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:16:40 Giờ Mùa Hè Iran Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:30:01 Giờ Chuẩn Iran Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:30:01 Giờ Chuẩn Iran Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "00:44:15 Giờ Mùa Hè Iran Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:44:15 Giờ Mùa Hè Iran Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "18:23:00 Giờ Chuẩn Iran Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:23:00 Giờ Chuẩn Iran Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:17:00 Giờ Chuẩn Iran Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:17:00 Giờ Chuẩn Iran Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "10:30:00 GMT+03:30 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:30:00 GMT+03:30 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "01:16:40 Giờ Chuẩn Iran Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:16:40 Giờ Chuẩn Iran Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13:16:40 Giờ Mùa Hè Iran Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:16:40 Giờ Mùa Hè Iran Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:00:00 Giờ chuẩn Đông Âu Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:00:00 Giờ chuẩn Đông Âu Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:14:15 Giờ mùa hè Đông Âu Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:14:15 Giờ mùa hè Đông Âu Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:53:00 Giờ Mùa Hè Matxcơva Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:53:00 Giờ Mùa Hè Matxcơva Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "19:47:00 Giờ mùa hè Đông Âu Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 19:47:00 Giờ mùa hè Đông Âu Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "03:00:00 GMT+03:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:00:00 GMT+03:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:46:40 Giờ Chuẩn Matxcơva Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:46:40 Giờ Chuẩn Matxcơva Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "04:46:40 Giờ mùa hè Đông Âu Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:46:40 Giờ mùa hè Đông Âu Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00:01 Giờ chuẩn Đông Âu Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00:01 Giờ chuẩn Đông Âu Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "23:14:15 Giờ mùa hè Đông Âu Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:14:15 Giờ mùa hè Đông Âu Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "18:53:00 Giờ Mùa Hè Matxcơva Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:53:00 Giờ Mùa Hè Matxcơva Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:47:00 Giờ mùa hè Đông Âu Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:47:00 Giờ mùa hè Đông Âu Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 GMT+03:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00:00 GMT+03:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "00:46:40 Giờ Chuẩn Matxcơva Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:46:40 Giờ Chuẩn Matxcơva Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:46:40 Giờ mùa hè Đông Âu Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:46:40 Giờ mùa hè Đông Âu Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00:00 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:14:15 Giờ Chuẩn Miền Đông Australia Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:14:15 Giờ Chuẩn Miền Đông Australia Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:53:00 Giờ Chuẩn Miền Đông Australia Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:53:00 Giờ Chuẩn Miền Đông Australia Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "02:47:00 Giờ Chuẩn Miền Đông Australia Thứ Hai, 30 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:47:00 Giờ Chuẩn Miền Đông Australia Thứ Hai, 30 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00:00 GMT+10:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00:00 GMT+10:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:46:40 Giờ Chuẩn Miền Đông Australia Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:46:40 Giờ Chuẩn Miền Đông Australia Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "11:46:40 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:46:40 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:00:01 Giờ Chuẩn Miền Đông Australia Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:00:01 Giờ Chuẩn Miền Đông Australia Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "06:14:15 Giờ Chuẩn Miền Đông Australia Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:14:15 Giờ Chuẩn Miền Đông Australia Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "00:53:00 Giờ Chuẩn Miền Đông Australia Thứ Tư, 30 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:53:00 Giờ Chuẩn Miền Đông Australia Thứ Tư, 30 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09:47:00 Giờ Chuẩn Miền Đông Australia Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:47:00 Giờ Chuẩn Miền Đông Australia Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:00:00 GMT+10:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00:00 GMT+10:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "07:46:40 Giờ Chuẩn Miền Đông Australia Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 07:46:40 Giờ Chuẩn Miền Đông Australia Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46:40 Giờ Chuẩn Miền Đông Australia Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00:00 Giờ Palau Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00:00 Giờ Palau Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:14:15 Giờ Palau Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:14:15 Giờ Palau Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:53:00 Giờ Palau Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:53:00 Giờ Palau Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "01:47:00 Giờ Palau Thứ Hai, 30 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:47:00 Giờ Palau Thứ Hai, 30 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00:00 GMT+09:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00:00 GMT+09:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 Giờ Palau Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46:40 Giờ Palau Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "10:46:40 Giờ Palau Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:46:40 Giờ Palau Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:00:01 Giờ Palau Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00:01 Giờ Palau Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "05:14:15 Giờ Palau Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:14:15 Giờ Palau Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "23:53:00 Giờ Palau Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:53:00 Giờ Palau Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "08:47:00 Giờ Palau Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:47:00 Giờ Palau Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:00:00 GMT+09:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:00:00 GMT+09:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "06:46:40 Giờ Palau Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:46:40 Giờ Palau Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:46:40 Giờ Palau Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:46:40 Giờ Palau Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00:00 Giờ Chuẩn Uruguay Thứ Bảy, 16 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:00:00 Giờ Chuẩn Uruguay Thứ Bảy, 16 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:14:15 Giờ Chuẩn Uruguay Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:14:15 Giờ Chuẩn Uruguay Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:53:00 Giờ Chuẩn Uruguay Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:53:00 Giờ Chuẩn Uruguay Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "13:47:00 Giờ Chuẩn Uruguay Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:47:00 Giờ Chuẩn Uruguay Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00:00 GMT-03:00 Thứ Ba, 15 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:00:00 GMT-03:00 Thứ Ba, 15 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:46:40 Giờ Chuẩn Uruguay Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:46:40 Giờ Chuẩn Uruguay Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "22:46:40 Giờ Chuẩn Uruguay Thứ Bảy, 8 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46:40 Giờ Chuẩn Uruguay Thứ Bảy, 8 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:00:01 Giờ Chuẩn Uruguay Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:00:01 Giờ Chuẩn Uruguay Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "17:14:15 Giờ Chuẩn Uruguay Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:14:15 Giờ Chuẩn Uruguay Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11:53:00 Giờ Chuẩn Uruguay Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:53:00 Giờ Chuẩn Uruguay Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "20:47:00 Giờ Chuẩn Uruguay Thứ Tư, 29 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 20:47:00 Giờ Chuẩn Uruguay Thứ Tư, 29 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:00:00 GMT-03:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:00:00 GMT-03:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "18:46:40 Giờ Chuẩn Uruguay Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46:40 Giờ Chuẩn Uruguay Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:46:40 Giờ Chuẩn Uruguay Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:46:40 Giờ Chuẩn Uruguay Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00 Thứ Bảy, 16 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00 Thứ Bảy, 16 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "06:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "09:47 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:47 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "17:00 Thứ Ba, 15 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00 Thứ Ba, 15 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "05:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "18:46 Thứ Bảy, 8 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46 Thứ Bảy, 8 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "07:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 07:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16:47 Thứ Tư, 29 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:47 Thứ Tư, 29 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "00:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "13:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "01:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:00 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 14:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17:47 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:47 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "01:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "14:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 14:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "15:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 15:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "00:47 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:47 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "08:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "22:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:30 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:44 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:44 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:23 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:23 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "20:17 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 20:17 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:30 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:30 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17:16 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:16 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "06:16 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:16 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11:30 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:30 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "00:44 Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:44 Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "18:23 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:23 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03:17 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:17 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "10:30 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:30 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "01:16 Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:16 Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13:16 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:16 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:00 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:00 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "19:47 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 19:47 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "03:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 03:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "04:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "23:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "18:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02:47 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:47 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "10:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "00:46 Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:46 Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "02:47 Thứ Hai, 30 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 02:47 Thứ Hai, 30 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "23:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "11:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "06:14 Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:14 Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "00:53 Thứ Tư, 30 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 00:53 Thứ Tư, 30 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09:47 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:47 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "07:46 Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 07:46 Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "18:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00 Chủ Nhật, 17 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "01:47 Thứ Hai, 30 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 01:47 Thứ Hai, 30 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 09:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "22:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "10:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "05:14 Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:14 Thứ Ba, 3 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "23:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 23:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "08:47 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 08:47 Thứ Năm, 30 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 16:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "06:46 Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 06:46 Thứ Ba, 13 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00 Thứ Bảy, 16 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:00 Thứ Bảy, 16 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "13:47 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 13:47 Chủ Nhật, 29 tháng 5, 2050" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21:00 Thứ Ba, 15 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 21:00 Thứ Ba, 15 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "10:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 10:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "22:46 Thứ Bảy, 8 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 22:46 Thứ Bảy, 8 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:00 Thứ Năm, 7 tháng 3, 2024" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "17:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 17:14 Thứ Hai, 2 tháng 7, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 11:53 Thứ Ba, 29 tháng 5, 1984" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "20:47 Thứ Tư, 29 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 20:47 Thứ Tư, 29 tháng 5, 2030" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "04:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 04:00 Thứ Tư, 16 tháng 7, 1969" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "18:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 18:46 Thứ Hai, 12 tháng 1, 1970" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "05:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "lúc 05:46 Chủ Nhật, 9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 tháng 5, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 tháng 5, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 tháng 5, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 tháng 5, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 tháng 5, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 tháng 5, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 tháng 5, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 tháng 5, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 tháng 5, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 tháng 5, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 tháng 5, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 tháng 5, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 tháng 5, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 tháng 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 tháng 3, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 tháng 7, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 tháng 5, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 tháng 5, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 tháng 7, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 tháng 1, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 tháng 9, 2001" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14:15 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53:00 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47:00 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46:40 PST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46:40 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00:01 PST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14:15 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53:00 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47:00 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00:00 GMT-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46:40 PST" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46:40 PDT" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14:15 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46:40 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46:40 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00:01 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14:15 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00:00 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46:40 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46:40 GMT+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44:15 GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16:40 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16:40 GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44:15 GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16:40 GMT+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16:40 GMT+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00:00 GMT+2" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14:15 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 GMT+4" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47:00 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00:00 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46:40 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46:40 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 GMT+2" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14:15 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53:00 GMT+4" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47:00 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46:40 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 GMT+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14:15 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46:40 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00:01 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14:15 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00:00 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46:40 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46:40 GMT+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14:15 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00:01 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14:15 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00:00 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46:40 GMT+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46:40 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00:01 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14:15 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00:00 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46:40 GMT-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "vi", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "05:46:40 GMT-3" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16‏/3‏/2024، 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16‏/3‏/2024، 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/2050، 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/2050، 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "15‏/7‏/1969، 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "15‏/7‏/1969، 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 5:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 5:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "8‏/9‏/2001، 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "8‏/9‏/2001، 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7‏/3‏/2024، 12:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7‏/3‏/2024، 12:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 1:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 1:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 7:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 7:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/2030، 4:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/2030، 4:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 12:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 12:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 1:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 1:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 1:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 1:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17‏/3‏/2024، 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "17‏/3‏/2024، 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 2:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 2:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 8:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 8:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/2050، 5:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/2050، 5:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 2:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 2:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 2:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 2:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7‏/3‏/2024، 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7‏/3‏/2024، 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 9:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 9:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 3:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 3:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "30‏/5‏/2030، 12:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "30‏/5‏/2030، 12:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 8:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 8:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 9:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 9:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17‏/3‏/2024، 3:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17‏/3‏/2024، 3:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 5:44 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 5:44 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 11:23 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 11:23 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/2050، 8:17 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/2050، 8:17 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 3:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 3:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 5:16 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 5:16 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 6:16 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 6:16 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7‏/3‏/2024، 11:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7‏/3‏/2024، 11:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "3‏/7‏/2001، 12:44 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "3‏/7‏/2001، 12:44 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 6:23 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 6:23 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "30‏/5‏/2030، 3:17 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "30‏/5‏/2030، 3:17 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 10:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 10:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13‏/1‏/1970، 1:16 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "13‏/1‏/1970، 1:16 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 1:16 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 1:16 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "17‏/3‏/2024، 2:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "17‏/3‏/2024، 2:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 4:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 4:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 11:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 11:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/2050، 7:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/2050، 7:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 3:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 3:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 4:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 4:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 4:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 4:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7‏/3‏/2024، 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7‏/3‏/2024، 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 11:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 11:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 6:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 6:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "30‏/5‏/2030، 2:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "30‏/5‏/2030، 2:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "13‏/1‏/1970، 12:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "13‏/1‏/1970، 12:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 11:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 11:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17‏/3‏/2024، 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17‏/3‏/2024، 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 11:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 11:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 5:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 5:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30‏/5‏/2050، 2:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30‏/5‏/2050، 2:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 11:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 11:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 11:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 11:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7‏/3‏/2024، 6:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7‏/3‏/2024، 6:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "3‏/7‏/2001، 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "3‏/7‏/2001، 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30‏/5‏/1984، 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30‏/5‏/1984، 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30‏/5‏/2030، 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30‏/5‏/2030، 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "13‏/1‏/1970، 7:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "13‏/1‏/1970، 7:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17‏/3‏/2024، 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17‏/3‏/2024، 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 10:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 10:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 4:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 4:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30‏/5‏/2050، 1:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30‏/5‏/2050، 1:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 10:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 10:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7‏/3‏/2024، 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7‏/3‏/2024، 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "3‏/7‏/2001، 5:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "3‏/7‏/2001، 5:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 11:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 11:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30‏/5‏/2030، 8:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30‏/5‏/2030، 8:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 4:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 4:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "13‏/1‏/1970، 6:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "13‏/1‏/1970، 6:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 5:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 5:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16‏/3‏/2024، 9:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16‏/3‏/2024، 9:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 10:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 10:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 4:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 4:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/2050، 1:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/2050، 1:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "15‏/7‏/1969، 9:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "15‏/7‏/1969، 9:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 10:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 10:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "8‏/9‏/2001، 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "8‏/9‏/2001، 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7‏/3‏/2024، 5:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7‏/3‏/2024، 5:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2‏/7‏/2001، 5:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2‏/7‏/2001، 5:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/1984، 11:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/1984، 11:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29‏/5‏/2030، 8:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29‏/5‏/2030، 8:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16‏/7‏/1969، 4:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16‏/7‏/1969، 4:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12‏/1‏/1970، 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12‏/1‏/1970، 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/2001، 5:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/2001، 5:46 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16‏/03‏/2024، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16‏/03‏/2024، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 6:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 6:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 12:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 12:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/2050، 9:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/2050، 9:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "15‏/07‏/1969، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "15‏/07‏/1969، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 5:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 5:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "08‏/09‏/2001، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "08‏/09‏/2001، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "07‏/03‏/2024، 12:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "07‏/03‏/2024، 12:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 1:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 1:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 7:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 7:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/2030، 4:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/2030، 4:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 12:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 12:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 1:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 1:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 1:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 1:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17‏/03‏/2024، 1:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "17‏/03‏/2024، 1:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 2:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 2:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 8:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 8:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/2050، 5:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/2050، 5:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 1:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 1:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 2:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 2:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 2:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 2:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "07‏/03‏/2024، 9:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "07‏/03‏/2024، 9:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 9:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 9:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 3:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 3:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "30‏/05‏/2030، 12:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "30‏/05‏/2030، 12:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 8:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 8:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 9:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 9:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17‏/03‏/2024، 3:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17‏/03‏/2024، 3:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 5:44:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 5:44:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 11:23:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 11:23:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/2050، 8:17:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/2050، 8:17:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 3:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 3:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 5:16:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 5:16:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 6:16:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 6:16:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "07‏/03‏/2024، 11:30:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "07‏/03‏/2024، 11:30:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "03‏/07‏/2001، 12:44:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "03‏/07‏/2001، 12:44:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 6:23:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 6:23:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "30‏/05‏/2030، 3:17:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "30‏/05‏/2030، 3:17:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 10:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 10:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13‏/01‏/1970، 1:16:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "13‏/01‏/1970، 1:16:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 1:16:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 1:16:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "17‏/03‏/2024، 2:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "17‏/03‏/2024، 2:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 4:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 4:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 11:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 11:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/2050، 7:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/2050، 7:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 3:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 3:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 4:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 4:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 4:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 4:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "07‏/03‏/2024، 10:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "07‏/03‏/2024، 10:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 11:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 11:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 6:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 6:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "30‏/05‏/2030، 2:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "30‏/05‏/2030، 2:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "13‏/01‏/1970، 12:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "13‏/01‏/1970، 12:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 11:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 11:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17‏/03‏/2024، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17‏/03‏/2024، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 11:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 11:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 5:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 5:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30‏/05‏/2050، 2:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30‏/05‏/2050، 2:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 11:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 11:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 11:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 11:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "07‏/03‏/2024، 6:00:01 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "07‏/03‏/2024، 6:00:01 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "03‏/07‏/2001، 6:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "03‏/07‏/2001، 6:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30‏/05‏/1984، 12:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30‏/05‏/1984، 12:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30‏/05‏/2030، 9:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30‏/05‏/2030، 9:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "13‏/01‏/1970، 7:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "13‏/01‏/1970، 7:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17‏/03‏/2024، 9:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17‏/03‏/2024، 9:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 10:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 10:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 4:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 4:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30‏/05‏/2050، 1:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30‏/05‏/2050، 1:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 9:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 9:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 10:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 10:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "07‏/03‏/2024، 5:00:01 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "07‏/03‏/2024، 5:00:01 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "03‏/07‏/2001، 5:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "03‏/07‏/2001، 5:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 11:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 11:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30‏/05‏/2030، 8:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30‏/05‏/2030، 8:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 4:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 4:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "13‏/01‏/1970، 6:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "13‏/01‏/1970، 6:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 5:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 5:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16‏/03‏/2024، 9:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16‏/03‏/2024، 9:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 10:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 10:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 4:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 4:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/2050، 1:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/2050، 1:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "15‏/07‏/1969، 9:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "15‏/07‏/1969، 9:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 10:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 10:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "08‏/09‏/2001، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "08‏/09‏/2001، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "07‏/03‏/2024، 5:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "07‏/03‏/2024، 5:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "02‏/07‏/2001، 5:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "02‏/07‏/2001، 5:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/1984، 11:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/1984، 11:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29‏/05‏/2030، 8:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29‏/05‏/2030، 8:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16‏/07‏/1969، 4:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16‏/07‏/1969، 4:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12‏/01‏/1970، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12‏/01‏/1970، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "09‏/09‏/2001، 5:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "09‏/09‏/2001، 5:46:40 ص" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16 مارس 2024، 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16 مارس 2024 في 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 6:14:15 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 6:14:15 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 12:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 12:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 2050، 9:47:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 2050 في 9:47:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "15 يوليو 1969، 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "15 يوليو 1969 في 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 5:46:40 ص غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 5:46:40 ص غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "8 سبتمبر 2001، 6:46:40 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "8 سبتمبر 2001 في 6:46:40 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7 مارس 2024، 12:00:01 ص غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7 مارس 2024 في 12:00:01 ص غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 1:14:15 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 1:14:15 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 7:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 7:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 2030، 4:47:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 2030 في 4:47:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 12:00:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 12:00:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 1:46:40 م غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 1:46:40 م غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 1:46:40 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 1:46:40 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "17 مارس 2024، 1:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "17 مارس 2024 في 1:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 2:14:15 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 2:14:15 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 8:53:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 8:53:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 2050، 5:47:00 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 2050 في 5:47:00 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 1:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 1:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 2:46:40 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 2:46:40 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 2:46:40 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 2:46:40 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7 مارس 2024، 9:00:01 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7 مارس 2024 في 9:00:01 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 9:14:15 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 9:14:15 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 3:53:00 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 3:53:00 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "30 مايو 2030، 12:47:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "30 مايو 2030 في 12:47:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 8:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 8:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 10:46:40 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 10:46:40 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 9:46:40 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 9:46:40 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "17 مارس 2024، 3:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "17 مارس 2024 في 3:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 5:44:15 م غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 5:44:15 م غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 11:23:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 11:23:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 2050، 8:17:00 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 2050 في 8:17:00 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 3:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 3:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 5:16:40 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 5:16:40 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 6:16:40 ص غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 6:16:40 ص غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7 مارس 2024، 11:30:01 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7 مارس 2024 في 11:30:01 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "3 يوليو 2001، 12:44:15 ص غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "3 يوليو 2001 في 12:44:15 ص غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 6:23:00 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 6:23:00 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "30 مايو 2030، 3:17:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "30 مايو 2030 في 3:17:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 10:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 10:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "13 يناير 1970، 1:16:40 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "13 يناير 1970 في 1:16:40 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 1:16:40 م غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 1:16:40 م غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "17 مارس 2024، 2:00:00 ص غرينتش+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "17 مارس 2024 في 2:00:00 ص غرينتش+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 4:14:15 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 4:14:15 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 11:53:00 ص غرينتش+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 11:53:00 ص غرينتش+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 2050، 7:47:00 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 2050 في 7:47:00 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 3:00:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 3:00:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 4:46:40 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 4:46:40 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 4:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 4:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7 مارس 2024، 10:00:01 ص غرينتش+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7 مارس 2024 في 10:00:01 ص غرينتش+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 11:14:15 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 11:14:15 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 6:53:00 م غرينتش+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 6:53:00 م غرينتش+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "30 مايو 2030، 2:47:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "30 مايو 2030 في 2:47:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 10:00:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "13 يناير 1970، 12:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "13 يناير 1970 في 12:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 11:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "17 مارس 2024، 10:00:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "17 مارس 2024 في 10:00:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 11:14:15 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 11:14:15 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 5:53:00 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 5:53:00 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 مايو 2050، 2:47:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 مايو 2050 في 2:47:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 10:00:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 10:00:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 11:46:40 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 11:46:40 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 11:46:40 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 11:46:40 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7 مارس 2024، 6:00:01 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7 مارس 2024 في 6:00:01 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "3 يوليو 2001، 6:14:15 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "3 يوليو 2001 في 6:14:15 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 مايو 1984، 12:53:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 مايو 1984 في 12:53:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "30 مايو 2030، 9:47:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "30 مايو 2030 في 9:47:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 5:00:00 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 5:00:00 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "13 يناير 1970، 7:46:40 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "13 يناير 1970 في 7:46:40 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 6:46:40 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 6:46:40 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "17 مارس 2024، 9:00:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "17 مارس 2024 في 9:00:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 10:14:15 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 10:14:15 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 4:53:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 4:53:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30 مايو 2050، 1:47:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30 مايو 2050 في 1:47:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 9:00:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 9:00:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 10:46:40 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 10:46:40 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 10:46:40 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 10:46:40 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7 مارس 2024، 5:00:01 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7 مارس 2024 في 5:00:01 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "3 يوليو 2001، 5:14:15 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "3 يوليو 2001 في 5:14:15 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 11:53:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 11:53:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "30 مايو 2030، 8:47:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "30 مايو 2030 في 8:47:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 4:00:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 4:00:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "13 يناير 1970، 6:46:40 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "13 يناير 1970 في 6:46:40 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 5:46:40 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 5:46:40 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16 مارس 2024، 9:00:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16 مارس 2024 في 9:00:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 10:14:15 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 10:14:15 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 4:53:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 4:53:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 2050، 1:47:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 2050 في 1:47:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "15 يوليو 1969، 9:00:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "15 يوليو 1969 في 9:00:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 10:46:40 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 10:46:40 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "8 سبتمبر 2001، 10:46:40 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "8 سبتمبر 2001 في 10:46:40 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7 مارس 2024، 5:00:01 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7 مارس 2024 في 5:00:01 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2 يوليو 2001، 5:14:15 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2 يوليو 2001 في 5:14:15 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 1984، 11:53:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 1984 في 11:53:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "29 مايو 2030، 8:47:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "29 مايو 2030 في 8:47:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "16 يوليو 1969، 4:00:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "16 يوليو 1969 في 4:00:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "12 يناير 1970، 6:46:40 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "12 يناير 1970 في 6:46:40 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9 سبتمبر 2001، 5:46:40 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9 سبتمبر 2001 في 5:46:40 ص غرينتش-3" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "السبت، 16 مارس 2024، 5:00:00 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 16 مارس 2024 في 5:00:00 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 6:14:15 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 6:14:15 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 12:53:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 12:53:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 9:47:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 9:47:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 15 يوليو 1969، 5:00:00 م غرينتش-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 15 يوليو 1969 في 5:00:00 م غرينتش-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 5:46:40 ص توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 5:46:40 ص توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "السبت، 8 سبتمبر 2001، 6:46:40 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 8 سبتمبر 2001 في 6:46:40 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 12:00:01 ص توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 12:00:01 ص توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 1:14:15 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 1:14:15 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 7:53:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 7:53:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 29 مايو 2030، 4:47:00 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 29 مايو 2030 في 4:47:00 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 12:00:00 ص غرينتش-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 12:00:00 ص غرينتش-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 1:46:40 م توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 1:46:40 م توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 1:46:40 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 1:46:40 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 1:00:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 1:00:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 2:14:15 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 2:14:15 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 8:53:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 8:53:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 5:47:00 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 5:47:00 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 1:00:00 ص غرينتش+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 1:00:00 ص غرينتش+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 2:46:40 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 2:46:40 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 2:46:40 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 2:46:40 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 9:00:01 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 9:00:01 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 9:14:15 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 9:14:15 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 3:53:00 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 3:53:00 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 12:47:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 12:47:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 8:00:00 ص غرينتش+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 8:00:00 ص غرينتش+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 10:46:40 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 10:46:40 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 9:46:40 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 9:46:40 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 3:30:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 3:30:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 5:44:15 م توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 5:44:15 م توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 11:23:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 11:23:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 8:17:00 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 8:17:00 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 3:30:00 ص غرينتش+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 3:30:00 ص غرينتش+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 5:16:40 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 5:16:40 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 6:16:40 ص توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 6:16:40 ص توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 11:30:01 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 11:30:01 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 3 يوليو 2001، 12:44:15 ص توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 3 يوليو 2001 في 12:44:15 ص توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 6:23:00 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 6:23:00 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 3:17:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 3:17:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 10:30:00 ص غرينتش+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 10:30:00 ص غرينتش+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 13 يناير 1970، 1:16:40 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 13 يناير 1970 في 1:16:40 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 1:16:40 م توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 1:16:40 م توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 2:00:00 ص توقيت شرق أوروبا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 2:00:00 ص توقيت شرق أوروبا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 4:14:15 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 4:14:15 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 ص توقيت موسكو الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 11:53:00 ص توقيت موسكو الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 7:47:00 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 7:47:00 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 3:00:00 ص غرينتش+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 3:00:00 ص غرينتش+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 4:46:40 م توقيت موسكو الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 4:46:40 م توقيت موسكو الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 4:46:40 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 4:46:40 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 10:00:01 ص توقيت شرق أوروبا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 10:00:01 ص توقيت شرق أوروبا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 11:14:15 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 11:14:15 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 6:53:00 م توقيت موسكو الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 6:53:00 م توقيت موسكو الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 2:47:00 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 2:47:00 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 10:00:00 ص غرينتش+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 10:00:00 ص غرينتش+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 13 يناير 1970، 12:46:40 ص توقيت موسكو الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 13 يناير 1970 في 12:46:40 ص توقيت موسكو الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 11:46:40 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 11:46:40 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 10:00:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 10:00:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 11:14:15 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 11:14:15 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 5:53:00 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 5:53:00 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 30 مايو 2050، 2:47:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 30 مايو 2050 في 2:47:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 10:00:00 ص غرينتش+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 10:00:00 ص غرينتش+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 11:46:40 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 11:46:40 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 11:46:40 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 11:46:40 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 6:00:01 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 6:00:01 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 3 يوليو 2001، 6:14:15 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 3 يوليو 2001 في 6:14:15 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 30 مايو 1984، 12:53:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 30 مايو 1984 في 12:53:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 9:47:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 9:47:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 5:00:00 م غرينتش+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 5:00:00 م غرينتش+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 13 يناير 1970، 7:46:40 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 13 يناير 1970 في 7:46:40 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 6:46:40 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 6:46:40 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 9:00:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 9:00:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 10:14:15 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 10:14:15 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 4:53:00 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 4:53:00 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 30 مايو 2050، 1:47:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 30 مايو 2050 في 1:47:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 9:00:00 ص غرينتش+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 9:00:00 ص غرينتش+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 10:46:40 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 10:46:40 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 10:46:40 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 10:46:40 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 5:00:01 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 5:00:01 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 3 يوليو 2001، 5:14:15 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 3 يوليو 2001 في 5:14:15 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 11:53:00 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 8:47:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 8:47:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 4:00:00 م غرينتش+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 4:00:00 م غرينتش+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 13 يناير 1970، 6:46:40 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 13 يناير 1970 في 6:46:40 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 5:46:40 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 5:46:40 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "السبت، 16 مارس 2024، 9:00:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 16 مارس 2024 في 9:00:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 10:14:15 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 10:14:15 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 4:53:00 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 4:53:00 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 1:47:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 1:47:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 15 يوليو 1969، 9:00:00 م غرينتش-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 15 يوليو 1969 في 9:00:00 م غرينتش-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 10:46:40 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 10:46:40 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "السبت، 8 سبتمبر 2001، 10:46:40 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 8 سبتمبر 2001 في 10:46:40 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 5:00:01 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 5:00:01 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 5:14:15 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 5:14:15 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 11:53:00 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 11:53:00 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 29 مايو 2030، 8:47:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 29 مايو 2030 في 8:47:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 4:00:00 ص غرينتش-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 4:00:00 ص غرينتش-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 6:46:40 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 6:46:40 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 5:46:40 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 5:46:40 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "السبت، 16 مارس 2024، 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 16 مارس 2024 في 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 6:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 6:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 12:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 12:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 9:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 9:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 15 يوليو 1969، 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 15 يوليو 1969 في 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 5:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 5:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "السبت، 8 سبتمبر 2001، 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 8 سبتمبر 2001 في 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 12:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 12:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 1:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 1:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 7:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 7:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 29 مايو 2030، 4:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 29 مايو 2030 في 4:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 12:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 12:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 1:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 1:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 1:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 1:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 1:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 1:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 2:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 2:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 8:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 8:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 5:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 5:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 1:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 1:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 2:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 2:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 2:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 2:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 9:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 9:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 3:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 3:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 12:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 12:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 8:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 8:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 9:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 9:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 3:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 3:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 5:44 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 5:44 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 11:23 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 11:23 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 8:17 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 8:17 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 3:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 3:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 5:16 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 5:16 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 6:16 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 6:16 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 11:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 11:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 3 يوليو 2001، 12:44 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 3 يوليو 2001 في 12:44 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 6:23 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 6:23 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 3:17 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 3:17 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 10:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 10:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 13 يناير 1970، 1:16 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 13 يناير 1970 في 1:16 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 1:16 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 1:16 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 2:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 2:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 4:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 4:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 11:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 11:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 7:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 7:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 3:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 3:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 4:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 4:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 4:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 4:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 11:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 11:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 6:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 6:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 2:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 2:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 13 يناير 1970، 12:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 13 يناير 1970 في 12:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 11:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 11:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 11:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 11:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 5:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 5:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 30 مايو 2050، 2:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 30 مايو 2050 في 2:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 11:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 11:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 11:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 11:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 6:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 6:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 3 يوليو 2001، 6:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 3 يوليو 2001 في 6:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 30 مايو 1984، 12:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 30 مايو 1984 في 12:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 9:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 9:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 13 يناير 1970، 7:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 13 يناير 1970 في 7:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 17 مارس 2024، 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 17 مارس 2024 في 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 10:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 10:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 4:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 4:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 30 مايو 2050، 1:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 30 مايو 2050 في 1:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 10:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 10:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 3 يوليو 2001، 5:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 3 يوليو 2001 في 5:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 11:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 11:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 30 مايو 2030، 8:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 30 مايو 2030 في 8:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 4:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 4:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 13 يناير 1970، 6:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 13 يناير 1970 في 6:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 5:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 5:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "السبت، 16 مارس 2024، 9:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 16 مارس 2024 في 9:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 10:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 10:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 4:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 4:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 29 مايو 2050، 1:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 29 مايو 2050 في 1:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 15 يوليو 1969، 9:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 15 يوليو 1969 في 9:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 10:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 10:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "السبت، 8 سبتمبر 2001، 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 8 سبتمبر 2001 في 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 7 مارس 2024، 5:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 7 مارس 2024 في 5:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 2 يوليو 2001، 5:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 2 يوليو 2001 في 5:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 29 مايو 1984، 11:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 29 مايو 1984 في 11:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 29 مايو 2030، 8:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 29 مايو 2030 في 8:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 16 يوليو 1969، 4:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 16 يوليو 1969 في 4:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 12 يناير 1970، 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 12 يناير 1970 في 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 سبتمبر 2001، 5:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 سبتمبر 2001 في 5:46 ص" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "16 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "29 مايو 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "15 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "8 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "7 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "29 مايو 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "17 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "29 مايو 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "7 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "30 مايو 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "17 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "29 مايو 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "7 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "3 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "30 مايو 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "13 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "17 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "29 مايو 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "7 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "30 مايو 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "13 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "17 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "30 مايو 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "7 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "3 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "30 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "30 مايو 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "13 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "17 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "30 مايو 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "7 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "3 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "30 مايو 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "13 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "9 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "16 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "29 مايو 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "15 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "8 سبتمبر 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "7 مارس 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "2 يوليو 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "29 مايو 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "29 مايو 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "16 يوليو 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "12 يناير 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "9 سبتمبر 2001" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "5:00:00 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "6:14:15 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "12:53:00 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "9:47:00 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "5:00:00 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "5:46:40 ص غرينتش-8" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "6:46:40 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "12:00:01 ص غرينتش-8" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "1:14:15 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "7:53:00 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "4:47:00 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "12:00:00 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1:46:40 م غرينتش-8" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "1:46:40 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "1:00:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2:14:15 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "8:53:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "5:47:00 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1:00:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "2:46:40 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2:46:40 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "9:00:01 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "9:14:15 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "3:53:00 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "12:47:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "8:00:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "10:46:40 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9:46:40 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "3:30:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "5:44:15 م غرينتش+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "8:17:00 م غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "3:30:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "5:16:40 م غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "6:16:40 ص غرينتش+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "12:44:15 ص غرينتش+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "6:23:00 م غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "3:17:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1:16:40 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "1:16:40 م غرينتش+4:30" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2:00:00 ص غرينتش+2" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "4:14:15 م غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 ص غرينتش+4" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "7:47:00 م غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "3:00:00 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "4:46:40 م غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "4:46:40 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 ص غرينتش+2" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "11:14:15 م غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "6:53:00 م غرينتش+4" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2:47:00 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "12:46:40 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "11:14:15 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "5:53:00 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2:47:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "6:00:01 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "6:14:15 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "12:53:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "9:47:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "5:00:00 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "7:46:40 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "6:46:40 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "9:00:00 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "10:14:15 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "4:53:00 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "1:47:00 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "9:00:00 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "5:00:01 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "5:14:15 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "11:53:00 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "8:47:00 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "4:00:00 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "6:46:40 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "5:46:40 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "9:00:00 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "4:53:00 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "1:47:00 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "9:00:00 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "5:00:01 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "5:14:15 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "8:47:00 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "4:00:00 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "6:46:40 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "5:46:40 ص غرينتش-3" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "6‏/9‏/1445 هـ, 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "6‏/9‏/1445 هـ, 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/1472 هـ, 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/1472 هـ, 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1‏/5‏/1389 هـ, 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1‏/5‏/1389 هـ, 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 5:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 5:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "20‏/6‏/1422 هـ, 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "20‏/6‏/1422 هـ, 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "27‏/8‏/1445 هـ, 12:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "27‏/8‏/1445 هـ, 12:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 1:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 1:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 7:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 7:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "27‏/1‏/1452 هـ, 4:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "27‏/1‏/1452 هـ, 4:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 12:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 12:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 1:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 1:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 1:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 1:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7‏/9‏/1445 هـ, 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7‏/9‏/1445 هـ, 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 2:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 2:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 8:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 8:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/1472 هـ, 5:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/1472 هـ, 5:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 1:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 2:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 2:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 2:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 2:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "27‏/8‏/1445 هـ, 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "27‏/8‏/1445 هـ, 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 9:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 9:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 3:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 3:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28‏/1‏/1452 هـ, 12:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28‏/1‏/1452 هـ, 12:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 8:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 8:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 9:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 9:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7‏/9‏/1445 هـ, 3:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7‏/9‏/1445 هـ, 3:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 5:44 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 5:44 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 11:23 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 11:23 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/1472 هـ, 8:17 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/1472 هـ, 8:17 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 3:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 3:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 5:16 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 5:16 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 6:16 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 6:16 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "27‏/8‏/1445 هـ, 11:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "27‏/8‏/1445 هـ, 11:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12‏/4‏/1422 هـ, 12:44 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12‏/4‏/1422 هـ, 12:44 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 6:23 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 6:23 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28‏/1‏/1452 هـ, 3:17 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28‏/1‏/1452 هـ, 3:17 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 10:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 10:30 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "6‏/11‏/1389 هـ, 1:16 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "6‏/11‏/1389 هـ, 1:16 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 1:16 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 1:16 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7‏/9‏/1445 هـ, 2:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7‏/9‏/1445 هـ, 2:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 4:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 4:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 11:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 11:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/1472 هـ, 7:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/1472 هـ, 7:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 3:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 3:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 4:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 4:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 4:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 4:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "27‏/8‏/1445 هـ, 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "27‏/8‏/1445 هـ, 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 11:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 11:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 6:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 6:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28‏/1‏/1452 هـ, 2:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28‏/1‏/1452 هـ, 2:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "6‏/11‏/1389 هـ, 12:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "6‏/11‏/1389 هـ, 12:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 11:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 11:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7‏/9‏/1445 هـ, 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7‏/9‏/1445 هـ, 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 11:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 11:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 5:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 5:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10‏/9‏/1472 هـ, 2:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "10‏/9‏/1472 هـ, 2:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 10:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 11:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 11:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 11:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 11:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "27‏/8‏/1445 هـ, 6:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "27‏/8‏/1445 هـ, 6:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12‏/4‏/1422 هـ, 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12‏/4‏/1422 هـ, 6:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29‏/8‏/1404 هـ, 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29‏/8‏/1404 هـ, 12:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "28‏/1‏/1452 هـ, 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "28‏/1‏/1452 هـ, 9:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "6‏/11‏/1389 هـ, 7:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "6‏/11‏/1389 هـ, 7:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7‏/9‏/1445 هـ, 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7‏/9‏/1445 هـ, 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 10:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 10:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 4:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 4:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "10‏/9‏/1472 هـ, 1:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "10‏/9‏/1472 هـ, 1:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 9:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 10:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 10:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "27‏/8‏/1445 هـ, 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "27‏/8‏/1445 هـ, 5:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12‏/4‏/1422 هـ, 5:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12‏/4‏/1422 هـ, 5:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 11:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 11:53 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28‏/1‏/1452 هـ, 8:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28‏/1‏/1452 هـ, 8:47 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 4:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 4:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "6‏/11‏/1389 هـ, 6:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "6‏/11‏/1389 هـ, 6:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 5:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 5:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "6‏/9‏/1445 هـ, 9:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "6‏/9‏/1445 هـ, 9:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 10:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 10:14 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 4:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 4:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9‏/9‏/1472 هـ, 1:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9‏/9‏/1472 هـ, 1:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1‏/5‏/1389 هـ, 9:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1‏/5‏/1389 هـ, 9:00 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 10:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 10:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "20‏/6‏/1422 هـ, 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "20‏/6‏/1422 هـ, 10:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "27‏/8‏/1445 هـ, 5:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "27‏/8‏/1445 هـ, 5:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11‏/4‏/1422 هـ, 5:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "11‏/4‏/1422 هـ, 5:14 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "28‏/8‏/1404 هـ, 11:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "28‏/8‏/1404 هـ, 11:53 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "27‏/1‏/1452 هـ, 8:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "27‏/1‏/1452 هـ, 8:47 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2‏/5‏/1389 هـ, 4:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2‏/5‏/1389 هـ, 4:00 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5‏/11‏/1389 هـ, 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5‏/11‏/1389 هـ, 6:46 م" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21‏/6‏/1422 هـ, 5:46 ص" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "21‏/6‏/1422 هـ, 5:46 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "6 رمضان 1445 هـ، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "6 رمضان 1445 هـ، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 12:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 12:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 9:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ، 9:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 12:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ، 12:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 7:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 7:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "27 محرم 1452 هـ، 4:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "27 محرم 1452 هـ، 4:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 1:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ، 1:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 8:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 8:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 5:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ، 5:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 9:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ، 9:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 3:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 3:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 12:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ، 12:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 3:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ، 3:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 11:23:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 11:23:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 8:17:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ، 8:17:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 11:30:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ، 11:30:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 6:23:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 6:23:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 3:17:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ، 3:17:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 2:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ، 2:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 7:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ، 7:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 10:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ، 10:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 6:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 6:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 2:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ، 2:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 5:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 5:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10 رمضان 1472 هـ، 2:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "10 رمضان 1472 هـ، 2:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 6:00:01 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ، 6:00:01 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29 شعبان 1404 هـ، 12:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29 شعبان 1404 هـ، 12:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 9:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ، 9:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 9:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ، 9:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 4:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 4:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "10 رمضان 1472 هـ، 1:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "10 رمضان 1472 هـ، 1:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 5:00:01 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ، 5:00:01 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 11:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 11:53:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 8:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ، 8:47:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "6 رمضان 1445 هـ، 9:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "6 رمضان 1445 هـ، 9:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 4:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 4:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 1:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ، 1:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 5:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ، 5:00:01 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "27 محرم 1452 هـ، 8:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "27 محرم 1452 هـ، 8:47:00 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "6 رمضان 1445 هـ، 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "6 رمضان 1445 هـ في 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 6:14:15 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 12:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 12:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 9:47:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ في 9:47:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1 جمادى الأولى 1389 هـ في 5:00:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 5:46:40 ص غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 5:46:40 ص غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "20 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "20 جمادى الآخرة 1422 هـ في 6:46:40 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 12:00:01 ص غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ في 12:00:01 ص غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 1:14:15 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 1:14:15 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 7:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 7:53:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "27 محرم 1452 هـ، 4:47:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "27 محرم 1452 هـ في 4:47:00 م غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 12:00:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 12:00:00 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 1:46:40 م غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 1:46:40 م غرينتش-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 1:46:40 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 1:46:40 ص غرينتش-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 1:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ في 1:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 2:14:15 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 2:14:15 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 8:53:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 8:53:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 5:47:00 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ في 5:47:00 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 1:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 1:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 2:46:40 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 2:46:40 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 2:46:40 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 2:46:40 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 9:00:01 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ في 9:00:01 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 9:14:15 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 9:14:15 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 3:53:00 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 3:53:00 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 12:47:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ في 12:47:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 8:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 8:00:00 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 10:46:40 م غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 9:46:40 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 9:46:40 ص غرينتش+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 3:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ في 3:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 5:44:15 م غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 5:44:15 م غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 11:23:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 11:23:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 8:17:00 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ في 8:17:00 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 3:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 3:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 5:16:40 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 5:16:40 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 6:16:40 ص غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 6:16:40 ص غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 11:30:01 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ في 11:30:01 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "12 ربيع الآخر 1422 هـ، 12:44:15 ص غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "12 ربيع الآخر 1422 هـ في 12:44:15 ص غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 6:23:00 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 6:23:00 م غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 3:17:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ في 3:17:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 10:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 10:30:00 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "6 ذو القعدة 1389 هـ، 1:16:40 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "6 ذو القعدة 1389 هـ في 1:16:40 ص غرينتش+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 1:16:40 م غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 1:16:40 م غرينتش+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 2:00:00 ص غرينتش+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ في 2:00:00 ص غرينتش+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 4:14:15 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 4:14:15 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 11:53:00 ص غرينتش+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 7:47:00 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ في 7:47:00 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 3:00:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 3:00:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 4:46:40 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 4:46:40 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 4:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 4:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 10:00:01 ص غرينتش+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ في 10:00:01 ص غرينتش+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 11:14:15 م غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 6:53:00 م غرينتش+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 6:53:00 م غرينتش+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 2:47:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ في 2:47:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 10:00:00 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "6 ذو القعدة 1389 هـ، 12:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "6 ذو القعدة 1389 هـ في 12:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 11:46:40 ص غرينتش+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 10:00:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ في 10:00:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 11:14:15 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 11:14:15 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 5:53:00 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 5:53:00 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "10 رمضان 1472 هـ، 2:47:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "10 رمضان 1472 هـ في 2:47:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 10:00:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 11:46:40 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 11:46:40 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 11:46:40 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 11:46:40 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 6:00:01 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ في 6:00:01 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "12 ربيع الآخر 1422 هـ، 6:14:15 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "12 ربيع الآخر 1422 هـ في 6:14:15 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "29 شعبان 1404 هـ، 12:53:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "29 شعبان 1404 هـ في 12:53:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 9:47:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ في 9:47:00 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 5:00:00 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "6 ذو القعدة 1389 هـ، 7:46:40 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "6 ذو القعدة 1389 هـ في 7:46:40 ص غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 6:46:40 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 6:46:40 م غرينتش+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7 رمضان 1445 هـ، 9:00:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7 رمضان 1445 هـ في 9:00:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 10:14:15 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 4:53:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 4:53:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "10 رمضان 1472 هـ، 1:47:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "10 رمضان 1472 هـ في 1:47:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 9:00:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 10:46:40 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 10:46:40 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 10:46:40 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 5:00:01 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ في 5:00:01 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "12 ربيع الآخر 1422 هـ، 5:14:15 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "12 ربيع الآخر 1422 هـ في 5:14:15 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 11:53:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 11:53:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "28 محرم 1452 هـ، 8:47:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "28 محرم 1452 هـ في 8:47:00 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 4:00:00 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "6 ذو القعدة 1389 هـ، 6:46:40 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "6 ذو القعدة 1389 هـ في 6:46:40 ص غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 5:46:40 م غرينتش+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "6 رمضان 1445 هـ، 9:00:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "6 رمضان 1445 هـ في 9:00:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 10:14:15 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 10:14:15 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 4:53:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 4:53:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9 رمضان 1472 هـ، 1:47:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9 رمضان 1472 هـ في 1:47:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1 جمادى الأولى 1389 هـ، 9:00:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1 جمادى الأولى 1389 هـ في 9:00:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 10:46:40 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 10:46:40 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "20 جمادى الآخرة 1422 هـ، 10:46:40 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "20 جمادى الآخرة 1422 هـ في 10:46:40 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "27 شعبان 1445 هـ، 5:00:01 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "27 شعبان 1445 هـ في 5:00:01 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "11 ربيع الآخر 1422 هـ، 5:14:15 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "11 ربيع الآخر 1422 هـ في 5:14:15 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "28 شعبان 1404 هـ، 11:53:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "28 شعبان 1404 هـ في 11:53:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "27 محرم 1452 هـ، 8:47:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "27 محرم 1452 هـ في 8:47:00 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "2 جمادى الأولى 1389 هـ في 4:00:00 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5 ذو القعدة 1389 هـ، 6:46:40 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5 ذو القعدة 1389 هـ في 6:46:40 م غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "21 جمادى الآخرة 1422 هـ، 5:46:40 ص غرينتش-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "21 جمادى الآخرة 1422 هـ في 5:46:40 ص غرينتش-3" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "السبت، 6 رمضان 1445 هـ، 5:00:00 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 6 رمضان 1445 هـ في 5:00:00 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 6:14:15 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 6:14:15 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 12:53:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 12:53:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 9:47:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 9:47:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ في 5:00:00 م غرينتش-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:46:40 ص توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 5:46:40 ص توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 6:46:40 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ في 6:46:40 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 12:00:01 ص توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 12:00:01 ص توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 1:14:15 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 1:14:15 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 7:53:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 7:53:00 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 27 محرم 1452 هـ، 4:47:00 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 27 محرم 1452 هـ في 4:47:00 م توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 12:00:00 ص غرينتش-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 12:00:00 ص غرينتش-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 1:46:40 م توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 1:46:40 م توقيت المحيط الهادي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:46:40 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 1:46:40 ص توقيت المحيط الهادي الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 1:00:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 1:00:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 2:14:15 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 2:14:15 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 8:53:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 8:53:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 5:47:00 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 5:47:00 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 1:00:00 ص غرينتش+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 1:00:00 ص غرينتش+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 2:46:40 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 2:46:40 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 2:46:40 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 2:46:40 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 9:00:01 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 9:00:01 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 9:14:15 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 9:14:15 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 3:53:00 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 3:53:00 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 12:47:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 12:47:00 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 8:00:00 ص غرينتش+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 8:00:00 ص غرينتش+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 10:46:40 م توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 9:46:40 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 9:46:40 ص توقيت غرب أفريقيا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 3:30:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 3:30:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:44:15 م توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 5:44:15 م توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:23:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:23:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 8:17:00 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 8:17:00 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:30:00 ص غرينتش+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 3:30:00 ص غرينتش+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:16:40 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 5:16:40 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:16:40 ص توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 6:16:40 ص توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 11:30:01 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 11:30:01 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 12:44:15 ص توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ في 12:44:15 ص توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:23:00 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 6:23:00 م توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 3:17:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 3:17:00 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:30:00 ص غرينتش+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:30:00 ص غرينتش+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 1:16:40 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 1:16:40 ص توقيت إيران الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:16:40 م توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 1:16:40 م توقيت إيران الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 2:00:00 ص توقيت شرق أوروبا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 2:00:00 ص توقيت شرق أوروبا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 4:14:15 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 4:14:15 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 ص توقيت موسكو الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53:00 ص توقيت موسكو الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 7:47:00 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 7:47:00 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:00:00 ص غرينتش+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 3:00:00 ص غرينتش+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 4:46:40 م توقيت موسكو الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 4:46:40 م توقيت موسكو الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 4:46:40 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 4:46:40 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 10:00:01 ص توقيت شرق أوروبا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 10:00:01 ص توقيت شرق أوروبا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14:15 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 11:14:15 م توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:53:00 م توقيت موسكو الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 6:53:00 م توقيت موسكو الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 2:47:00 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 2:47:00 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:00:00 ص غرينتش+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 12:46:40 ص توقيت موسكو الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 12:46:40 ص توقيت موسكو الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46:40 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 11:46:40 ص توقيت شرق أوروبا الصيفي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 10:00:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 10:00:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14:15 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 11:14:15 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 5:53:00 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 5:53:00 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 10 رمضان 1472 هـ، 2:47:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 10 رمضان 1472 هـ في 2:47:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00:00 ص غرينتش+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:00:00 ص غرينتش+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 11:46:40 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 11:46:40 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46:40 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 11:46:40 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 6:00:01 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 6:00:01 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 6:14:15 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ في 6:14:15 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 29 شعبان 1404 هـ، 12:53:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 29 شعبان 1404 هـ في 12:53:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 9:47:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 9:47:00 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 5:00:00 م غرينتش+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 5:00:00 م غرينتش+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 7:46:40 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 7:46:40 ص توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:46:40 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 6:46:40 م توقيت شرق أستراليا الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 9:00:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 9:00:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14:15 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 10:14:15 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53:00 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 4:53:00 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 10 رمضان 1472 هـ، 1:47:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 10 رمضان 1472 هـ في 1:47:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 9:00:00 ص غرينتش+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 9:00:00 ص غرينتش+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 10:46:40 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 10:46:40 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 10:46:40 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 5:00:01 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 5:00:01 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 5:14:15 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ في 5:14:15 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53:00 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 8:47:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 8:47:00 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00:00 م غرينتش+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 4:00:00 م غرينتش+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 6:46:40 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 6:46:40 ص توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46:40 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 5:46:40 م توقيت بالاو" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "السبت، 6 رمضان 1445 هـ، 9:00:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 6 رمضان 1445 هـ في 9:00:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14:15 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 10:14:15 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53:00 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 4:53:00 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 1:47:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 1:47:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 9:00:00 م غرينتش-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ في 9:00:00 م غرينتش-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46:40 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 10:46:40 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 10:46:40 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ في 10:46:40 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 5:00:01 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 5:00:01 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:14:15 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 5:14:15 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53:00 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53:00 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 27 محرم 1452 هـ، 8:47:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 27 محرم 1452 هـ في 8:47:00 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00:00 ص غرينتش-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 4:00:00 ص غرينتش-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 6:46:40 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 6:46:40 م توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46:40 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 5:46:40 ص توقيت أوروغواي الرسمي" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "السبت، 6 رمضان 1445 هـ، 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 6 رمضان 1445 هـ في 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 6:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 6:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 12:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 12:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 9:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 9:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ في 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 5:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ في 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 12:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 12:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 1:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 1:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 7:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 7:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 27 محرم 1452 هـ، 4:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 27 محرم 1452 هـ في 4:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 12:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 12:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 1:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 1:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 1:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 1:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 1:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 2:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 2:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 8:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 8:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 5:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 5:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 1:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 1:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 2:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 2:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 2:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 2:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 9:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 9:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 3:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 3:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 12:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 12:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 8:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 8:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 9:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 9:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 3:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 3:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:44 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 5:44 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:23 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:23 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 8:17 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 8:17 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 3:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 5:16 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 5:16 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:16 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 6:16 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 11:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 11:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 12:44 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ في 12:44 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:23 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 6:23 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 3:17 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 3:17 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:30 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 1:16 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 1:16 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 1:16 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 1:16 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 2:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 2:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 4:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 4:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 7:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 7:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 3:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 3:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 4:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 4:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 4:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 4:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 11:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 6:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 6:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 2:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 2:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 12:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 12:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 11:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 11:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 11:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 5:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 5:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 10 رمضان 1472 هـ، 2:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 10 رمضان 1472 هـ في 2:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 10:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 11:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 11:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 11:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 11:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 6:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 6:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 6:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ في 6:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 29 شعبان 1404 هـ، 12:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 29 شعبان 1404 هـ في 12:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 9:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 9:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 7:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 7:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 7 رمضان 1445 هـ، 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 7 رمضان 1445 هـ في 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 10:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 4:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 10 رمضان 1472 هـ، 1:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 10 رمضان 1472 هـ في 1:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 9:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 10:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 10:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 5:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ، 5:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 12 ربيع الآخر 1422 هـ في 5:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 28 محرم 1452 هـ، 8:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 28 محرم 1452 هـ في 8:47 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 4:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ، 6:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 6 ذو القعدة 1389 هـ في 6:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 5:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "السبت، 6 رمضان 1445 هـ، 9:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 6 رمضان 1445 هـ في 9:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 10:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 10:14 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 4:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 4:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 9 رمضان 1472 هـ، 1:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 9 رمضان 1472 هـ في 1:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ، 9:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 1 جمادى الأولى 1389 هـ في 9:00 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 10:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 10:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ، 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "السبت، 20 جمادى الآخرة 1422 هـ في 10:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الخميس، 27 شعبان 1445 هـ، 5:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الخميس، 27 شعبان 1445 هـ في 5:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ، 5:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 11 ربيع الآخر 1422 هـ في 5:14 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الثلاثاء، 28 شعبان 1404 هـ، 11:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الثلاثاء، 28 شعبان 1404 هـ في 11:53 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 27 محرم 1452 هـ، 8:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 27 محرم 1452 هـ في 8:47 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ، 4:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأربعاء، 2 جمادى الأولى 1389 هـ في 4:00 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ، 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الاثنين، 5 ذو القعدة 1389 هـ في 6:46 م" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ، 5:46 ص" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "الأحد، 21 جمادى الآخرة 1422 هـ في 5:46 ص" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "6 رمضان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "9 رمضان 1472 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "1 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "20 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "27 شعبان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "27 محرم 1452 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "7 رمضان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "9 رمضان 1472 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "27 شعبان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "28 محرم 1452 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "7 رمضان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "9 رمضان 1472 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "27 شعبان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "12 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "28 محرم 1452 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "6 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "7 رمضان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "9 رمضان 1472 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "27 شعبان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "28 محرم 1452 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "6 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "7 رمضان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "10 رمضان 1472 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "27 شعبان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "12 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "29 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "28 محرم 1452 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "6 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "7 رمضان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "10 رمضان 1472 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "27 شعبان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "12 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "28 محرم 1452 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "6 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "6 رمضان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "9 رمضان 1472 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "1 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "20 جمادى الآخرة 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "27 شعبان 1445 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "11 ربيع الآخر 1422 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "28 شعبان 1404 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "27 محرم 1452 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "2 جمادى الأولى 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "5 ذو القعدة 1389 هـ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "21 جمادى الآخرة 1422 هـ" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "5:00:00 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "6:14:15 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "12:53:00 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "9:47:00 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "5:00:00 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "5:46:40 ص غرينتش-8" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "6:46:40 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "12:00:01 ص غرينتش-8" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "1:14:15 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "7:53:00 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "4:47:00 م غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "12:00:00 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "1:46:40 م غرينتش-8" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "1:46:40 ص غرينتش-7" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "1:00:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "2:14:15 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "8:53:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "5:47:00 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "1:00:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "2:46:40 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "2:46:40 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "9:00:01 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "9:14:15 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "3:53:00 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "12:47:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "8:00:00 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "10:46:40 م غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "9:46:40 ص غرينتش+1" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "3:30:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "5:44:15 م غرينتش+4:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "8:17:00 م غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "3:30:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "5:16:40 م غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "6:16:40 ص غرينتش+4:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "12:44:15 ص غرينتش+4:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "6:23:00 م غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "3:17:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "1:16:40 ص غرينتش+3:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "1:16:40 م غرينتش+4:30" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "2:00:00 ص غرينتش+2" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "4:14:15 م غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 ص غرينتش+4" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "7:47:00 م غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "3:00:00 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "4:46:40 م غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "4:46:40 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 ص غرينتش+2" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "11:14:15 م غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "6:53:00 م غرينتش+4" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "2:47:00 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "12:46:40 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 ص غرينتش+3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "11:14:15 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "5:53:00 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "2:47:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "6:00:01 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "6:14:15 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "12:53:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "9:47:00 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "5:00:00 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "7:46:40 ص غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "6:46:40 م غرينتش+10" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "9:00:00 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "10:14:15 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "4:53:00 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "1:47:00 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "9:00:00 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "5:00:01 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "5:14:15 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "11:53:00 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "8:47:00 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "4:00:00 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "6:46:40 ص غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "5:46:40 م غرينتش+9" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "9:00:00 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "4:53:00 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "1:47:00 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "9:00:00 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "5:00:01 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "5:14:15 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "8:47:00 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "4:00:00 ص غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "6:46:40 م غرينتش-3" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "ar", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "5:46:40 ص غرينتش-3" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৬/৩/২৪ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৩/২৪, ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ৬:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ৬:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ১২:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ১২:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৫০ ৯:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৫০, ৯:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৫/৭/৬৯ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৫/৭/৬৯, ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ৫:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ৫:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৮/৯/০১ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৮/৯/০১, ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৭/৩/২৪ ১২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৭/৩/২৪, ১২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ৭:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ৭:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৩০ ৪:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৩০, ৪:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ১২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ১২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ১:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ১:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৭/৩/২৪ ১:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৭/৩/২৪, ১:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ২:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ২:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ৮:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ৮:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৫০ ৫:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৫০, ৫:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ১:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ১:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ২:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ২:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ২:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ২:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৭/৩/২৪ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৭/৩/২৪, ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ৯:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ৯:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ৩:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ৩:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৩০/৫/৩০ ১২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৩০/৫/৩০, ১২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ৮:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ৮:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ৯:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ৯:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৭/৩/২৪ ৩:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৭/৩/২৪, ৩:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ৫:৪৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ৫:৪৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ১১:২৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ১১:২৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৫০ ৮:১৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৫০, ৮:১৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ৩:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ৩:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ৫:১৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ৫:১৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ৬:১৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ৬:১৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৭/৩/২৪ ১১:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৭/৩/২৪, ১১:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৩/৭/০১ ১২:৪৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৩/৭/০১, ১২:৪৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ৬:২৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ৬:২৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৩০/৫/৩০ ৩:১৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৩০/৫/৩০, ৩:১৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ১০:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ১০:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৩/১/৭০ ১:১৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৩/১/৭০, ১:১৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ১:১৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ১:১৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৭/৩/২৪ ২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৭/৩/২৪, ২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ৪:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ৪:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ১১:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ১১:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৫০ ৭:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৫০, ৭:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ৩:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ৩:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ৪:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ৪:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ৪:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ৪:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৭/৩/২৪ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৭/৩/২৪, ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ১১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ১১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ৬:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ৬:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৩০/৫/৩০ ২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৩০/৫/৩০, ২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৩/১/৭০ ১২:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৩/১/৭০, ১২:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ১১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ১১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৭/৩/২৪ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৭/৩/২৪, ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ১১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ১১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ৫:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ৫:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০/৫/৫০ ২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০/৫/৫০, ২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ১১:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ১১:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ১১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ১১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৭/৩/২৪ ৬:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৭/৩/২৪, ৬:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩/৭/০১ ৬:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩/৭/০১, ৬:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০/৫/৮৪ ১২:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০/৫/৮৪, ১২:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০/৫/৩০ ৯:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০/৫/৩০, ৯:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৩/১/৭০ ৭:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৩/১/৭০, ৭:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৭/৩/২৪ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৭/৩/২৪, ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ১০:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ১০:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ৪:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ৪:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩০/৫/৫০ ১:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩০/৫/৫০, ১:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ১০:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ১০:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৭/৩/২৪ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৭/৩/২৪, ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩/৭/০১ ৫:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩/৭/০১, ৫:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ১১:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ১১:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩০/৫/৩০ ৮:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩০/৫/৩০, ৮:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ৪:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ৪:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৩/১/৭০ ৬:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৩/১/৭০, ৬:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ৫:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ৫:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৬/৩/২৪ ৯:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৩/২৪, ৯:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ১০:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ১০:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ৪:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ৪:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৫০ ১:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৫০, ১:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৫/৭/৬৯ ৯:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৫/৭/৬৯, ৯:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ১০:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ১০:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৮/৯/০১ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৮/৯/০১, ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৭/৩/২৪ ৫:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৭/৩/২৪, ৫:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২/৭/০১ ৫:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২/৭/০১, ৫:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৮৪ ১১:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৮৪, ১১:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯/৫/৩০ ৮:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৫/৩০, ৮:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৬/৭/৬৯ ৪:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৬/৭/৬৯, ৪:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১২/১/৭০ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১২/১/৭০, ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/০১ ৫:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/০১, ৫:৪৬ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৬ মার্চ, ২০২৪, ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ৬:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ৬:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ১২:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০, ৯:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৫ জুল, ১৯৬৯ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৫ জুল, ১৯৬৯, ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ৫:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ৫:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৮ সেপ, ২০০১ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৮ সেপ, ২০০১, ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪, ১২:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ৭:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৩০, ৪:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ১২:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ১২:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ১:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ১:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪, ১:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ২:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ২:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ৮:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০, ৫:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ১:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ১:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ২:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ২:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ২:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ২:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪, ৯:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ৯:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ৯:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ৩:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০, ১২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ৮:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ৮:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ৯:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ৯:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪, ৩:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ৫:৪৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ৫:৪৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ১১:২৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০, ৮:১৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ৩:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ৩:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ৫:১৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ৫:১৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ৬:১৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ৬:১৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪, ১১:৩০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৩ জুল, ২০০১ ১২:৪৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৩ জুল, ২০০১, ১২:৪৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ৬:২৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০, ৩:১৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ১০:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ১০:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৩ জানু, ১৯৭০ ১:১৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৩ জানু, ১৯৭০, ১:১৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ১:১৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ১:১৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪, ২:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ৪:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ৪:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ১১:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০, ৭:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ৩:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ৩:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ৪:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ৪:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ৪:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ৪:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪, ১০:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ১১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ১১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ৬:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০, ২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৩ জানু, ১৯৭০ ১২:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৩ জানু, ১৯৭০, ১২:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ১১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ১১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪, ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ১১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ১১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ৫:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৫০, ২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ১১:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ১১:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ১১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ১১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪, ৬:০০:০১ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩ জুল, ২০০১ ৬:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩ জুল, ২০০১, ৬:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ১৯৮৪, ১২:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০, ৯:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৩ জানু, ১৯৭০ ৭:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৩ জানু, ১৯৭০, ৭:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪, ৯:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ১০:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ১০:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ৪:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৫০, ১:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ৯:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ৯:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ১০:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ১০:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪, ৫:০০:০১ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩ জুল, ২০০১ ৫:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩ জুল, ২০০১, ৫:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ১১:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০, ৮:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ৪:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ৪:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৩ জানু, ১৯৭০ ৬:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৩ জানু, ১৯৭০, ৬:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ৫:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ৫:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৬ মার্চ, ২০২৪, ৯:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ১০:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ১০:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ৪:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০, ১:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৫ জুল, ১৯৬৯ ৯:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৫ জুল, ১৯৬৯, ৯:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ১০:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ১০:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৮ সেপ, ২০০১ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৮ সেপ, ২০০১, ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪, ৫:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২ জুল, ২০০১ ৫:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২ জুল, ২০০১, ৫:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪, ১১:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৩০, ৮:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুল, ১৯৬৯ ৪:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুল, ১৯৬৯, ৪:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১২ জানু, ১৯৭০ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানু, ১৯৭০, ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ, ২০০১ ৫:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ, ২০০১, ৫:৪৬:৪০ AM" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৬ মার্চ, ২০২৪ ৫:০০:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৬ মার্চ, ২০২৪ এ ৫:০০:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ৬:১৪:১৫ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ১২:৫৩:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ৯:৪৭:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০ এ ৯:৪৭:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৫ জুলাই, ১৯৬৯ এ ৫:০০:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ৫:৪৬:৪০ AM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৮ সেপ্টেম্বর, ২০০১ এ ৬:৪৬:৪০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ১২:০০:০১ AM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪ এ ১২:০০:০১ AM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ১:১৪:১৫ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ১:১৪:১৫ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ৭:৫৩:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৩০ ৪:৪৭:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৩০ এ ৪:৪৭:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ১২:০০:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ১:৪৬:৪০ PM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ১:৪৬:৪০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ১:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪ এ ১:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ২:১৪:১৫ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ২:১৪:১৫ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ৮:৫৩:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ৫:৪৭:০০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০ এ ৫:৪৭:০০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ১:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ২:৪৬:৪০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ২:৪৬:৪০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ৯:০০:০১ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪ এ ৯:০০:০১ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ৯:১৪:১৫ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ৯:১৪:১৫ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ৩:৫৩:০০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ১২:৪৭:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০ এ ১২:৪৭:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ৮:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬:৪০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ৯:৪৬:৪০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪ এ ৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ৫:৪৪:১৫ PM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ৫:৪৪:১৫ PM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১১:২৩:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ১১:২৩:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ৮:১৭:০০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০ এ ৮:১৭:০০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ৫:১৬:৪০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ৬:১৬:৪০ AM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ১১:৩০:০১ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪ এ ১১:৩০:০১ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৩ জুলাই, ২০০১ এ ১২:৪৪:১৫ AM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৬:২৩:০০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ৬:২৩:০০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ৩:১৭:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০ এ ৩:১৭:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ১০:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১৩ জানুয়ারী, ১৯৭০ এ ১:১৬:৪০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ১:১৬:৪০ PM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ২:০০:০০ AM GMT +২" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪ এ ২:০০:০০ AM GMT +২" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ৪:১৪:১৫ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ৪:১৪:১৫ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT +৪" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ১১:৫৩:০০ AM GMT +৪" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ৭:৪৭:০০ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০ এ ৭:৪৭:০০ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ৩:০০:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ৪:৪৬:৪০ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ৪:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ১০:০০:০১ AM GMT +২" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪ এ ১০:০০:০১ AM GMT +২" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ১১:১৪:১৫ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM GMT +৪" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ৬:৫৩:০০ PM GMT +৪" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ২:৪৭:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০ এ ২:৪৭:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ১০:০০:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১৩ জানুয়ারী, ১৯৭০ এ ১২:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ১১:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ১০:০০:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪ এ ১০:০০:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ১১:১৪:১৫ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ১১:১৪:১৫ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ৫:৫৩:০০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৫০ ২:৪৭:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৫০ এ ২:৪৭:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ১০:০০:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ১১:৪৬:৪০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ১১:৪৬:৪০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ৬:০০:০১ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪ এ ৬:০০:০১ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩ জুলাই, ২০০১ ৬:১৪:১৫ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩ জুলাই, ২০০১ এ ৬:১৪:১৫ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ১৯৮৪ এ ১২:৫৩:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ৯:৪৭:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০ এ ৯:৪৭:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ৫:০০:০০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১৩ জানুয়ারী, ১৯৭০ এ ৭:৪৬:৪০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ৬:৪৬:৪০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৭ মার্চ, ২০২৪ ৯:০০:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৭ মার্চ, ২০২৪ এ ৯:০০:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ১০:১৪:১৫ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ৪:৫৩:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৫০ ১:৪৭:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৫০ এ ১:৪৭:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ৯:০০:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬:৪০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ১০:৪৬:৪০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪ এ ৫:০০:০১ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩ জুলাই, ২০০১ ৫:১৪:১৫ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩ জুলাই, ২০০১ এ ৫:১৪:১৫ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ১১:৫৩:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৩০ মে, ২০৩০ ৮:৪৭:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৩০ মে, ২০৩০ এ ৮:৪৭:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ৪:০০:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১৩ জানুয়ারী, ১৯৭০ এ ৬:৪৬:৪০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ৫:৪৬:৪০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৬ মার্চ, ২০২৪ ৯:০০:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৬ মার্চ, ২০২৪ এ ৯:০০:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ১০:১৪:১৫ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ১০:১৪:১৫ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ৪:৫৩:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৫০ ১:৪৭:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৫০ এ ১:৪৭:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৫ জুলাই, ১৯৬৯ এ ৯:০০:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৮ সেপ্টেম্বর, ২০০১ এ ১০:৪৬:৪০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৭ মার্চ, ২০২৪ ৫:০০:০১ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৭ মার্চ, ২০২৪ এ ৫:০০:০১ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২ জুলাই, ২০০১ ৫:১৪:১৫ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২ জুলাই, ২০০১ এ ৫:১৪:১৫ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ১৯৮৪ এ ১১:৫৩:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৯ মে, ২০৩০ ৮:৪৭:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৯ মে, ২০৩০ এ ৮:৪৭:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১৬ জুলাই, ১৯৬৯ এ ৪:০০:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১২ জানুয়ারী, ১৯৭০ এ ৬:৪৬:৪০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৯ সেপ্টেম্বর, ২০০১ এ ৫:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ এ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ এ ৫:০০:০০ PM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ এ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৯ মে, ২০৩০ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৯ মে, ২০৩০ এ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১২:০০:০০ AM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১২:০০:০০ AM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১:০০:০০ AM GMT +০১:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১:০০:০০ AM GMT +০১:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৮:০০:০০ AM GMT +০১:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৮:০০:০০ AM GMT +০১:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৩:৩০:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ৩:৩০:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:২৩:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১১:২৩:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৮:১৭:০০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৮:১৭:০০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:৩০:০০ AM GMT +০৩:৩০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৩:৩০:০০ AM GMT +০৩:৩০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:১৬:৪০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ৫:১৬:৪০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:১৬:৪০ AM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৬:১৬:৪০ AM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১১:৩০:০১ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ১১:৩০:০১ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ এ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:২৩:০০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৬:২৩:০০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৩:১৭:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ৩:১৭:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:৩০:০০ AM GMT +০৩:৩০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১০:৩০:০০ AM GMT +০৩:৩০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১:১৬:৪০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ এ ১:১৬:৪০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:১৬:৪০ PM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১:১৬:৪০ PM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:০০:০০ AM GMT +০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৩:০০:০০ AM GMT +০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৪:৪৬:৪০ PM মস্কো মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ৪:৪৬:৪০ PM মস্কো মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১০:০০:০০ AM GMT +০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১২:৪৬:৪০ AM মস্কো মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ এ ১২:৪৬:৪০ AM মস্কো মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৩০ মে, ২০৫০ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৩০ মে, ২০৫০ এ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০:০০ AM GMT +১০:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১০:০০:০০ AM GMT +১০:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ এ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ৩০ মে, ১৯৮৪ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ৩০ মে, ১৯৮৪ এ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৫:০০:০০ PM GMT +১০:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৫:০০:০০ PM GMT +১০:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ এ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৯:০০:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ৯:০০:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪:১৫ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১০:১৪:১৫ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩:০০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৪:৫৩:০০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৩০ মে, ২০৫০ ১:৪৭:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৩০ মে, ২০৫০ এ ১:৪৭:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৯:০০:০০ AM GMT +০৯:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৯:০০:০০ AM GMT +০৯:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬:৪০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১০:৪৬:৪০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০:০১ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ৫:০০:০১ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৫:১৪:১৫ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ এ ৫:১৪:১৫ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১১:৫৩:০০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৮:৪৭:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ৮:৪৭:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০:০০ PM GMT +০৯:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৪:০০:০০ PM GMT +০৯:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ এ ৬:৪৬:৪০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৫:৪৬:৪০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৯:০০:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ এ ৯:০০:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৯:০০:০০ PM GMT -০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ এ ৯:০০:০০ PM GMT -০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ এ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০:০১ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ৫:০০:০১ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৯ মে, ২০৩০ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৯ মে, ২০৩০ এ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০:০০ AM GMT -০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৪:০০:০০ AM GMT -০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ এ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৬:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৬:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১২:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১২:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৯:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৯:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ এ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ৫:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ এ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ১২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৭:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৭:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৯ মে, ২০৩০ ৪:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৯ মে, ২০৩০ এ ৪:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ১:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ২:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ২:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৮:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৮:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৫:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৫:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ২:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ২:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ২:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ২:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৯:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৯:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৩:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৩:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ১২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ১২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৮:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৮:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৯:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৯:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৩:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ৩:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:৪৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৫:৪৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:২৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১১:২৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৮:১৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৮:১৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৩:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৫:১৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ৫:১৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:১৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৬:১৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১১:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ১১:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ১২:৪৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ এ ১২:৪৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:২৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৬:২৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৩:১৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ৩:১৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১০:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১:১৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ এ ১:১৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১:১৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১:১৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৪:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৪:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১১:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ৭:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ৭:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৩:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৩:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৪:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ৪:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৪:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৪:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৬:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৬:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ১২:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ এ ১২:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৫:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৫:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৩০ মে, ২০৫০ ২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৩০ মে, ২০৫০ এ ২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১১:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১১:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৬:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ৬:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৬:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ এ ৬:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ৩০ মে, ১৯৮৪ ১২:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ৩০ মে, ১৯৮৪ এ ১২:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৯:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ৯:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৭:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ এ ৭:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ১৭ মার্চ, ২০২৪ এ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১০:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৪:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৩০ মে, ২০৫০ ১:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৩০ মে, ২০৫০ এ ১:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ১০:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ১০:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ ৫:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৩ জুলাই, ২০০১ এ ৫:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১১:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ ৮:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৩০ মে, ২০৩০ এ ৮:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৪:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ ৬:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৩ জানুয়ারী, ১৯৭০ এ ৬:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৫:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ ৯:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ১৬ মার্চ, ২০২৪ এ ৯:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ১০:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ১০:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ৪:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ৪:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২৯ মে, ২০৫০ ১:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২৯ মে, ২০৫০ এ ১:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ ৯:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১৫ জুলাই, ১৯৬৯ এ ৯:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ১০:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ১০:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ৮ সেপ্টেম্বর, ২০০১ এ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ ৫:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ৭ মার্চ, ২০২৪ এ ৫:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ২ জুলাই, ২০০১ ৫:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ২ জুলাই, ২০০১ এ ৫:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ ১১:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৯ মে, ১৯৮৪ এ ১১:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৯ মে, ২০৩০ ৮:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৯ মে, ২০৩০ এ ৮:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ ৪:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ১৬ জুলাই, ১৯৬৯ এ ৪:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১২ জানুয়ারী, ১৯৭০ এ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ ৫:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ সেপ্টেম্বর, ২০০১ এ ৫:৪৬ AM" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "১৬ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৫০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১৫ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "৮ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৯ মে, ২০৩০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "১৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "২৯ মে, ২০৫০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "৩০ মে, ২০৩০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "১৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "২৯ মে, ২০৫০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "৩ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "৩০ মে, ২০৩০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "১৩ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "১৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "২৯ মে, ২০৫০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "৩০ মে, ২০৩০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "১৩ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "১৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৫০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "৩ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "৩০ মে, ২০৩০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "১৩ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "১৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৫০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "৩ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "৩০ মে, ২০৩০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "১৩ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "১৬ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৫০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১৫ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "৮ সেপ্টেম্বর, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "৭ মার্চ, ২০২৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "২ জুলাই, ২০০১" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৯ মে, ১৯৮৪" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৯ মে, ২০৩০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "১৬ জুলাই, ১৯৬৯" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "১২ জানুয়ারী, ১৯৭০" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "৯ সেপ্টেম্বর, ২০০১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "৫:০০:০০ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "৬:১৪:১৫ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "১২:৫৩:০০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "৯:৪৭:০০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "৫:০০:০০ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "৫:৪৬:৪০ AM GMT -৮" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "৬:৪৬:৪০ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "১২:০০:০১ AM GMT -৮" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "১:১৪:১৫ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "৭:৫৩:০০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "৪:৪৭:০০ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "১২:০০:০০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "১:৪৬:৪০ PM GMT -৮" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "১:৪৬:৪০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "১:০০:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "২:১৪:১৫ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "৮:৫৩:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "৫:৪৭:০০ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "১:০০:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "২:৪৬:৪০ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "২:৪৬:৪০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "৯:০০:০১ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "৯:১৪:১৫ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "৩:৫৩:০০ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "১২:৪৭:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "৮:০০:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "১০:৪৬:৪০ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "৯:৪৬:৪০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "৫:৪৪:১৫ PM GMT +৪:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "১১:২৩:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "৮:১৭:০০ PM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "৫:১৬:৪০ PM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "৬:১৬:৪০ AM GMT +৪:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "১১:৩০:০১ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "১২:৪৪:১৫ AM GMT +৪:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "৬:২৩:০০ PM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "৩:১৭:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "১০:৩০:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "১:১৬:৪০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "১:১৬:৪০ PM GMT +৪:৩০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "২:০০:০০ AM GMT +২" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "৪:১৪:১৫ PM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "১১:৫৩:০০ AM GMT +৪" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "৭:৪৭:০০ PM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "৩:০০:০০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "৪:৪৬:৪০ PM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "৪:৪৬:৪০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "১০:০০:০১ AM GMT +২" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "১১:১৪:১৫ PM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "৬:৫৩:০০ PM GMT +৪" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "২:৪৭:০০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "১০:০০:০০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "১২:৪৬:৪০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "১১:৪৬:৪০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "১০:০০:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "১১:১৪:১৫ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "৫:৫৩:০০ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "২:৪৭:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "১০:০০:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "১১:৪৬:৪০ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "১১:৪৬:৪০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "৬:০০:০১ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "৬:১৪:১৫ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "১২:৫৩:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "৯:৪৭:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "৫:০০:০০ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "৭:৪৬:৪০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "৬:৪৬:৪০ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "৯:০০:০০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "১০:১৪:১৫ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "৪:৫৩:০০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "১:৪৭:০০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "৯:০০:০০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "১০:৪৬:৪০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "১০:৪৬:৪০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "৫:০০:০১ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "৫:১৪:১৫ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "১১:৫৩:০০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "৮:৪৭:০০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "৪:০০:০০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "৬:৪৬:৪০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "৫:৪৬:৪০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "৯:০০:০০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "১০:১৪:১৫ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "৪:৫৩:০০ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "১:৪৭:০০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "৯:০০:০০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "১০:৪৬:৪০ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "১০:৪৬:৪০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "৫:০০:০১ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "৫:১৪:১৫ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "১১:৫৩:০০ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "৮:৪৭:০০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "৪:০০:০০ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "৬:৪৬:৪০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "gregorian", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "৫:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৬/৯/১৪৪৫ যুগ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৬/৯/১৪৪৫ যুগ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ৬:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ৬:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ১২:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ১২:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/১৪৭২ যুগ ৯:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/১৪৭২ যুগ ৯:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১/৫/১৩৮৯ যুগ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১/৫/১৩৮৯ যুগ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ৫:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ৫:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২০/৬/১৪২২ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২০/৬/১৪২২ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৭/৮/১৪৪৫ যুগ ১২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৭/৮/১৪৪৫ যুগ ১২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ৭:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ৭:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৭/১/১৪৫২ যুগ ৪:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৭/১/১৪৫২ যুগ ৪:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ১২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ১২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ১:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ১:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৭/৯/১৪৪৫ যুগ ১:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৭/৯/১৪৪৫ যুগ ১:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ২:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ২:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ৮:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ৮:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/১৪৭২ যুগ ৫:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/১৪৭২ যুগ ৫:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ১:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ১:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ২:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ২:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ২:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ২:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৭/৮/১৪৪৫ যুগ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৭/৮/১৪৪৫ যুগ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ৯:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ৯:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ৩:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ৩:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮/১/১৪৫২ যুগ ১২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮/১/১৪৫২ যুগ ১২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ৮:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ৮:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ৯:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ৯:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৭/৯/১৪৪৫ যুগ ৩:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৭/৯/১৪৪৫ যুগ ৩:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ৫:৪৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ৫:৪৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ১১:২৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ১১:২৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/১৪৭২ যুগ ৮:১৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/১৪৭২ যুগ ৮:১৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ৩:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ৩:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ৫:১৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ৫:১৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ৬:১৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ৬:১৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৭/৮/১৪৪৫ যুগ ১১:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৭/৮/১৪৪৫ যুগ ১১:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১২/৪/১৪২২ যুগ ১২:৪৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১২/৪/১৪২২ যুগ ১২:৪৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ৬:২৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ৬:২৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮/১/১৪৫২ যুগ ৩:১৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮/১/১৪৫২ যুগ ৩:১৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ১০:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ১০:৩০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৬/১১/১৩৮৯ যুগ ১:১৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৬/১১/১৩৮৯ যুগ ১:১৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ১:১৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ১:১৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৭/৯/১৪৪৫ যুগ ২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৭/৯/১৪৪৫ যুগ ২:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ৪:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ৪:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/১৪৭২ যুগ ৭:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/১৪৭২ যুগ ৭:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ৩:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ৩:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ৪:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ৪:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ৪:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ৪:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৭/৮/১৪৪৫ যুগ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৭/৮/১৪৪৫ যুগ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ৬:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ৬:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮/১/১৪৫২ যুগ ২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮/১/১৪৫২ যুগ ২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৬/১১/১৩৮৯ যুগ ১২:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৬/১১/১৩৮৯ যুগ ১২:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৭/৯/১৪৪৫ যুগ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৭/৯/১৪৪৫ যুগ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ১১:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ৫:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ৫:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১০/৯/১৪৭২ যুগ ২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১০/৯/১৪৭২ যুগ ২:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ১০:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ১১:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ১১:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ১১:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৭/৮/১৪৪৫ যুগ ৬:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৭/৮/১৪৪৫ যুগ ৬:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১২/৪/১৪২২ যুগ ৬:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১২/৪/১৪২২ যুগ ৬:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৯/৮/১৪০৪ যুগ ১২:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৯/৮/১৪০৪ যুগ ১২:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৮/১/১৪৫২ যুগ ৯:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৮/১/১৪৫২ যুগ ৯:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৬/১১/১৩৮৯ যুগ ৭:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৬/১১/১৩৮৯ যুগ ৭:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৭/৯/১৪৪৫ যুগ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৭/৯/১৪৪৫ যুগ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ১০:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ১০:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১০/৯/১৪৭২ যুগ ১:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১০/৯/১৪৭২ যুগ ১:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ৯:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ১০:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ১০:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১২/৪/১৪২২ যুগ ৫:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১২/৪/১৪২২ যুগ ৫:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮/১/১৪৫২ যুগ ৮:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮/১/১৪৫২ যুগ ৮:৪৭ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ৪:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ৪:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৬/১১/১৩৮৯ যুগ ৬:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৬/১১/১৩৮৯ যুগ ৬:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৬/৯/১৪৪৫ যুগ ৯:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৬/৯/১৪৪৫ যুগ ৯:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ১০:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ১০:১৪ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ৪:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৯/৯/১৪৭২ যুগ ১:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৯/৯/১৪৭২ যুগ ১:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১/৫/১৩৮৯ যুগ ৯:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১/৫/১৩৮৯ যুগ ৯:০০ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ১০:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২০/৬/১৪২২ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২০/৬/১৪২২ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৭/৮/১৪৪৫ যুগ ৫:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১১/৪/১৪২২ যুগ ৫:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১১/৪/১৪২২ যুগ ৫:১৪ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৮/৮/১৪০৪ যুগ ১১:৫৩ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৭/১/১৪৫২ যুগ ৮:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৭/১/১৪৫২ যুগ ৮:৪৭ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২/৫/১৩৮৯ যুগ ৪:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২/৫/১৩৮৯ যুগ ৪:০০ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৫/১১/১৩৮৯ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৫/১১/১৩৮৯ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ AM" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২১/৬/১৪২২ যুগ ৫:৪৬ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৬ রমজান, ১৪৪৫ যুগ এ ৫:০০:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪:১৫ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ এ ৯:৪৭:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:৪৬:৪০ AM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬:৪০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ১২:০০:০১ AM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১:১৪:১৫ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৭:৫৩:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২৭ মহররম, ১৪৫২ যুগ এ ৪:৪৭:০০ PM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১২:০০:০০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১:৪৬:৪০ PM GMT -৮" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:৪৬:৪০ AM GMT -৭" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ এ ১:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ২:১৪:১৫ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৮:৫৩:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ এ ৫:৪৭:০০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ২:৪৬:৪০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ২:৪৬:৪০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ৯:০০:০১ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৯:১৪:১৫ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৩:৫৩:০০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ এ ১২:৪৭:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৮:০০:০০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ PM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৯:৪৬:৪০ AM GMT +১" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ এ ৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৫:৪৪:১৫ PM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১১:২৩:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ এ ৮:১৭:০০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:১৬:৪০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:১৬:৪০ AM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ১১:৩০:০১ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ এ ১২:৪৪:১৫ AM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৬:২৩:০০ PM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ এ ৩:১৭:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:৩০:০০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১:১৬:৪০ AM GMT +৩:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:১৬:৪০ PM GMT +৪:৩০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM GMT +২" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ এ ২:০০:০০ AM GMT +২" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৪:১৪:১৫ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT +৪" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ AM GMT +৪" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ এ ৭:৪৭:০০ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:০০:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৪:৪৬:৪০ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৪:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM GMT +২" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ১০:০০:০১ AM GMT +২" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪:১৫ PM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM GMT +৪" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৬:৫৩:০০ PM GMT +৪" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ এ ২:৪৭:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০:০০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১২:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬:৪০ AM GMT +৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ এ ১০:০০:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪:১৫ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৫:৫৩:০০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১০ রমজান, ১৪৭২ যুগ এ ২:৪৭:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১১:৪৬:৪০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬:৪০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ৬:০০:০১ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪:১৫ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ এ ৯:৪৭:০০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০:০০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৭:৪৬:৪০ AM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬:৪০ PM GMT +১০" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৭ রমজান, ১৪৪৫ যুগ এ ৯:০০:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪:১৫ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১০ রমজান, ১৪৭২ যুগ এ ১:৪৭:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬:৪০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০:০১ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪:১৫ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২৮ মহররম, ১৪৫২ যুগ এ ৮:৪৭:০০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০:০০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬:৪০ AM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬:৪০ PM GMT +৯" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৬ রমজান, ১৪৪৫ যুগ এ ৯:০০:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪:১৫ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৯ রমজান, ১৪৭২ যুগ এ ১:৪৭:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬:৪০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০:০১ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪:১৫ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২৭ মহররম, ১৪৫২ যুগ এ ৮:৪৭:০০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০:০০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬:৪০ PM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ এ ৫:০০:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪:১৫ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৯:৪৭:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০:০০ PM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১২:০০:০১ AM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১:১৪:১৫ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৭:৫৩:০০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ এ ৪:৪৭:০০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০:০০ AM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১২:০০:০০ AM GMT -০৭:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১:৪৬:৪০ PM প্রশান্ত মহাসাগরীয় অঞ্চলের মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:৪৬:৪০ AM প্রশান্ত মহাসাগরীয় অঞ্চলের দিনের সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ১:০০:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ২:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৮:৫৩:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৫:৪৭:০০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০:০০ AM GMT +০১:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১:০০:০০ AM GMT +০১:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ২:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ২:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৯:০০:০১ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৯:১৪:১৫ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৩:৫৩:০০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ১২:৪৭:০০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০:০০ AM GMT +০১:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৮:০০:০০ AM GMT +০১:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ PM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৯:৪৬:৪০ AM পশ্চিম আফ্রিকা মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৩:৩০:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ৩:৩০:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৫:৪৪:১৫ PM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:২৩:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৮:১৭:০০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৮:১৭:০০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০:০০ AM GMT +০৩:৩০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:৩০:০০ AM GMT +০৩:৩০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬:৪০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:১৬:৪০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬:৪০ AM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:১৬:৪০ AM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০:০১ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১১:৩০:০১ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ১২:৪৪:১৫ AM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩:০০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৬:২৩:০০ PM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৩:১৭:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৩:১৭:০০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০:০০ AM GMT +০৩:৩০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:৩০:০০ AM GMT +০৩:৩০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬:৪০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১:১৬:৪০ AM ইরান মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬:৪০ PM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:১৬:৪০ PM ইরান দিবালোক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ২:০০:০০ AM পূর্ব ইউরোপীয় মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৪:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ AM মস্কো গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৭:৪৭:০০ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০:০০ AM GMT +০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:০০:০০ AM GMT +০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬:৪০ PM মস্কো মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৪:৪৬:৪০ PM মস্কো মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৪:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১০:০০:০১ AM পূর্ব ইউরোপীয় মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪:১৫ PM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৬:৫৩:০০ PM মস্কো গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ২:৪৭:০০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০:০০ AM GMT +০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬:৪০ AM মস্কো মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১২:৪৬:৪০ AM মস্কো মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬:৪০ AM পূর্ব ইউরোপীয় গ্রীষ্মকালীন সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ১০:০০:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪:১৫ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৫:৫৩:০০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ এ ২:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০:০০ AM GMT +১০:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০:০০ AM GMT +১০:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১১:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৬:০০:০১ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪:১৫ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৯:৪৭:০০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০:০০ PM GMT +১০:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০:০০ PM GMT +১০:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৭:৪৬:৪০ AM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬:৪০ PM অস্ট্রেলীয় পূর্ব মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৯:০০:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ৯:০০:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪:১৫ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩:০০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ১:৪৭:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ এ ১:৪৭:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ AM GMT +০৯:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০:০০ AM GMT +০৯:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬:৪০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০:০১ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪:১৫ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৮:৪৭:০০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ PM GMT +০৯:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০:০০ PM GMT +০৯:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬:৪০ AM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬:৪০ PM পালাউ সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৯:০০:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ এ ৯:০০:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪:১৫ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩:০০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ১:৪৭:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০:০০ PM GMT -০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০:০০ PM GMT -০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬:৪০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬:৪০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০:০১ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০:০১ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪:১৫ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩:০০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ এ ৮:৪৭:০০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০:০০ AM GMT -০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০:০০ AM GMT -০৩:০০" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬:৪০ PM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬:৪০ AM উরুগুয়ে মানক সময়" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ এ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৬:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১২:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৯:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৯:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৭:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৭:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৪:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ এ ৪:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ১:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ২:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ২:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৮:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৮:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৫:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৫:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ২:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ২:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ২:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ২:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৯:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৯:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৩:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৩:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ১২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ১২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৮:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৮:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৯:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৯:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৩:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ৩:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:৪৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৫:৪৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:২৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:২৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৮:১৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৮:১৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৫:১৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৫:১৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:১৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:১৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১১:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১১:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ১২:৪৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ১২:৪৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:২৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৬:২৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৩:১৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৩:১৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:৩০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১:১৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১:১৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১:১৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১:১৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ২:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৪:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৪:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ৭:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ৭:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৩:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৩:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৪:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৪:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৪:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৪:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৬:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৬:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ১২:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ১২:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১১:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৫:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৫:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ এ ২:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ১০:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১১:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১১:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১১:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৬:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৬:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৬:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ৬:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ ১২:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৯ শা‘বান, ১৪০৪ যুগ এ ১২:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৯:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৯:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৭:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৭:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৭ রমজান, ১৪৪৫ যুগ এ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ ১:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১০ রমজান, ১৪৭২ যুগ এ ১:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ ৫:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১২ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ ৮:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৮ মহররম, ১৪৫২ যুগ এ ৮:৪৭ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ৬ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ ৯:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ৬ রমজান, ১৪৪৫ যুগ এ ৯:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ১০:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ১০:১৪ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ৪:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ৪:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ ১:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ৯ রমজান, ১৪৭২ যুগ এ ১:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৯:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ১ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৯:০০ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ১০:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ১০:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "শনিবার, ২০ জমাদিউস সানি, ১৪২২ যুগ এ ১০:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ ৫:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বৃহস্পতিবার, ২৭ শা‘বান, ১৪৪৫ যুগ এ ৫:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ ৫:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ১১ রবিউস সানি, ১৪২২ যুগ এ ৫:১৪ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ ১১:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "মঙ্গলবার, ২৮ শা‘বান, ১৪০৪ যুগ এ ১১:৫৩ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ ৮:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২৭ মহররম, ১৪৫২ যুগ এ ৮:৪৭ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ ৪:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "বুধবার, ২ জমাদিউল আউয়াল, ১৩৮৯ যুগ এ ৪:০০ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "সোমবার, ৫ জ্বিলকদ, ১৩৮৯ যুগ এ ৬:৪৬ PM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ ৫:৪৬ AM" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "রবিবার, ২১ জমাদিউস সানি, ১৪২২ যুগ এ ৫:৪৬ AM" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "৬ রমজান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "৯ রমজান, ১৪৭২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "২৭ মহররম, ১৪৫২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "৭ রমজান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "৯ রমজান, ১৪৭২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "২৮ মহররম, ১৪৫২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "৭ রমজান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "৯ রমজান, ১৪৭২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "২৮ মহররম, ১৪৫২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "৭ রমজান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "৯ রমজান, ১৪৭২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "২৮ মহররম, ১৪৫২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "৭ রমজান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "১০ রমজান, ১৪৭২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "২৯ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "২৮ মহররম, ১৪৫২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "৭ রমজান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "১০ রমজান, ১৪৭২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "১২ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "২৮ মহররম, ১৪৫২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "৬ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "৬ রমজান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "৯ রমজান, ১৪৭২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "১ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "২০ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "২৭ শা‘বান, ১৪৪৫ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "১১ রবিউস সানি, ১৪২২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "২৮ শা‘বান, ১৪০৪ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "২৭ মহররম, ১৪৫২ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "২ জমাদিউল আউয়াল, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "৫ জ্বিলকদ, ১৩৮৯ যুগ" - }, - { - "dateLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "২১ জমাদিউস সানি, ১৪২২ যুগ" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "৫:০০:০০ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "৬:১৪:১৫ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "১২:৫৩:০০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "৯:৪৭:০০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "৫:০০:০০ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "৫:৪৬:৪০ AM GMT -৮" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "৬:৪৬:৪০ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "১২:০০:০১ AM GMT -৮" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "১:১৪:১৫ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "৭:৫৩:০০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "৪:৪৭:০০ PM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "১২:০০:০০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "১:৪৬:৪০ PM GMT -৮" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "১:৪৬:৪০ AM GMT -৭" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "১:০০:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "২:১৪:১৫ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "৮:৫৩:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "৫:৪৭:০০ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "১:০০:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "২:৪৬:৪০ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "২:৪৬:৪০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "৯:০০:০১ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "৯:১৪:১৫ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "৩:৫৩:০০ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "১২:৪৭:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "৮:০০:০০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "১০:৪৬:৪০ PM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "৯:৪৬:৪০ AM GMT +১" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "৫:৪৪:১৫ PM GMT +৪:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "১১:২৩:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "৮:১৭:০০ PM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "৩:৩০:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "৫:১৬:৪০ PM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "৬:১৬:৪০ AM GMT +৪:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "১১:৩০:০১ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "১২:৪৪:১৫ AM GMT +৪:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "৬:২৩:০০ PM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "৩:১৭:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "১০:৩০:০০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "১:১৬:৪০ AM GMT +৩:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "১:১৬:৪০ PM GMT +৪:৩০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "২:০০:০০ AM GMT +২" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "৪:১৪:১৫ PM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "১১:৫৩:০০ AM GMT +৪" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "৭:৪৭:০০ PM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "৩:০০:০০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "৪:৪৬:৪০ PM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "৪:৪৬:৪০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "১০:০০:০১ AM GMT +২" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "১১:১৪:১৫ PM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "৬:৫৩:০০ PM GMT +৪" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "২:৪৭:০০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "১০:০০:০০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "১২:৪৬:৪০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "১১:৪৬:৪০ AM GMT +৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "১০:০০:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "১১:১৪:১৫ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "৫:৫৩:০০ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "২:৪৭:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "১০:০০:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "১১:৪৬:৪০ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "১১:৪৬:৪০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "৬:০০:০১ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "৬:১৪:১৫ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "১২:৫৩:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "৯:৪৭:০০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "৫:০০:০০ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "৭:৪৬:৪০ AM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "৬:৪৬:৪০ PM GMT +১০" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "৯:০০:০০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "১০:১৪:১৫ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "৪:৫৩:০০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "১:৪৭:০০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "৯:০০:০০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "১০:৪৬:৪০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "১০:৪৬:৪০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "৫:০০:০১ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "৫:১৪:১৫ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "১১:৫৩:০০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "৮:৪৭:০০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "৪:০০:০০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "৬:৪৬:৪০ AM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "৫:৪৬:৪০ PM GMT +৯" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "৯:০০:০০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "১০:১৪:১৫ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "৪:৫৩:০০ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "১:৪৭:০০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "৯:০০:০০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "১০:৪৬:৪০ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "১০:৪৬:৪০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "৫:০০:০১ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "৫:১৪:১৫ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "১১:৫৩:০০ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "৮:৪৭:০০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "৪:০০:০০ AM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "৬:৪৬:৪০ PM GMT -৩" - }, - { - "timeLength": "long", - "calendar": "islamic", - "locale": "bn", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "৫:৪৬:৪০ AM GMT -৩" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "3/16/24 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "3/16/24 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 06:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 06:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 00:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 00:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5/29/50 09:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50 09:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7/15/69 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7/15/69 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 05:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 05:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9/8/01 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9/8/01 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "3/7/24 00:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24 00:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 13:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 13:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 07:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 07:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "5/29/30 16:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "5/29/30 16:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 00:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 00:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 13:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 13:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 01:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 01:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "3/17/24 01:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24 01:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 14:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 14:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 08:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 08:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5/29/50 17:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50 17:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 01:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 01:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 14:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 14:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 02:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 02:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "3/7/24 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 21:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 21:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 15:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 15:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "5/30/30 00:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30 00:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 08:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 08:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 09:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 09:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "3/17/24 03:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24 03:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 17:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 17:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 11:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5/29/50 20:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50 20:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 03:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 03:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 17:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 17:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 06:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 06:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "3/7/24 11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24 11:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7/3/01 00:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7/3/01 00:44" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 18:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 18:23" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "5/30/30 03:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30 03:17" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 10:30" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "1/13/70 01:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "1/13/70 01:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 13:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 13:16" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "3/17/24 02:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24 02:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 16:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 16:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5/29/50 19:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50 19:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 03:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 03:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 16:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 16:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 04:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 04:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "3/7/24 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 23:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 23:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 18:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 18:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "5/30/30 02:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30 02:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "1/13/70 00:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "1/13/70 00:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "3/17/24 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 23:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 23:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 17:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 17:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5/30/50 02:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5/30/50 02:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 10:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 23:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 23:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 11:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "3/7/24 18:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24 18:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7/3/01 06:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7/3/01 06:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5/30/84 00:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5/30/84 00:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "5/30/30 09:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30 09:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "1/13/70 07:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "1/13/70 07:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "3/17/24 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "3/17/24 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 22:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 22:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 16:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 16:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5/30/50 01:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5/30/50 01:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 09:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "3/7/24 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24 17:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7/3/01 05:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7/3/01 05:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 23:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 23:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "5/30/30 08:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "5/30/30 08:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 16:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 16:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "1/13/70 06:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "1/13/70 06:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 17:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 17:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "3/16/24 21:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "3/16/24 21:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 10:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 04:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 04:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5/29/50 13:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5/29/50 13:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7/15/69 21:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7/15/69 21:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 10:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9/8/01 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9/8/01 22:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "3/7/24 05:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "3/7/24 05:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7/2/01 17:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7/2/01 17:14" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5/29/84 11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5/29/84 11:53" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "5/29/30 20:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "5/29/30 20:47" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "7/16/69 04:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "7/16/69 04:00" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "1/12/70 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "1/12/70 18:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "9/9/01 05:46" - }, - { - "dateLength": "short", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "9/9/01 05:46" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mas 16, 2024 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mas 16, 2024 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 06:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 06:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 00:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 00:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 2050 09:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 2050 09:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jul 15, 1969 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jul 15, 1969 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 05:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 05:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sep 8, 2001 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sep 8, 2001 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mas 7, 2024 00:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mas 7, 2024 00:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 13:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 13:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 07:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 07:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 2030 16:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 2030 16:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 00:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 00:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 13:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 13:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 01:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 01:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mas 17, 2024 01:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mas 17, 2024 01:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 14:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 14:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 08:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 08:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 2050 17:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 2050 17:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 01:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 01:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 14:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 14:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 02:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 02:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mas 7, 2024 09:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mas 7, 2024 09:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 21:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 21:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 15:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 15:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mey 30, 2030 00:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mey 30, 2030 00:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 08:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 08:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 09:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 09:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mas 17, 2024 03:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mas 17, 2024 03:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 17:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 17:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 11:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 2050 20:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 2050 20:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 03:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 03:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 17:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 17:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 06:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 06:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mas 7, 2024 11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mas 7, 2024 11:30:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jul 3, 2001 00:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jul 3, 2001 00:44:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 18:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 18:23:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mey 30, 2030 03:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mey 30, 2030 03:17:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 10:30:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Jan 13, 1970 01:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Jan 13, 1970 01:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 13:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 13:16:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mas 17, 2024 02:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mas 17, 2024 02:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 16:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 16:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 2050 19:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 2050 19:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 03:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 03:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 16:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 16:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 04:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 04:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mas 7, 2024 10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mas 7, 2024 10:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 23:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 23:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 18:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 18:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mey 30, 2030 02:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mey 30, 2030 02:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Jan 13, 1970 00:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Jan 13, 1970 00:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mas 17, 2024 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mas 17, 2024 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 23:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 23:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 17:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 17:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mey 30, 2050 02:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mey 30, 2050 02:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 10:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 23:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 23:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 11:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mas 7, 2024 18:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mas 7, 2024 18:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jul 3, 2001 06:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jul 3, 2001 06:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mey 30, 1984 00:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mey 30, 1984 00:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mey 30, 2030 09:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mey 30, 2030 09:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 17:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Jan 13, 1970 07:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Jan 13, 1970 07:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mas 17, 2024 09:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mas 17, 2024 09:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 22:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 22:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 16:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 16:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mey 30, 2050 01:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mey 30, 2050 01:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 09:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 09:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mas 7, 2024 17:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mas 7, 2024 17:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jul 3, 2001 05:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jul 3, 2001 05:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 23:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 23:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mey 30, 2030 08:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mey 30, 2030 08:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 16:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 16:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Jan 13, 1970 06:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Jan 13, 1970 06:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 17:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 17:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mas 16, 2024 21:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mas 16, 2024 21:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 10:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 04:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 04:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 2050 13:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 2050 13:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jul 15, 1969 21:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jul 15, 1969 21:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 10:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sep 8, 2001 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sep 8, 2001 22:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mas 7, 2024 05:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mas 7, 2024 05:00:01" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jul 2, 2001 17:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jul 2, 2001 17:14:15" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 1984 11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 1984 11:53:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mey 29, 2030 20:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mey 29, 2030 20:47:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jul 16, 1969 04:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jul 16, 1969 04:00:00" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Jan 12, 1970 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Jan 12, 1970 18:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Sep 9, 2001 05:46:40" - }, - { - "dateLength": "medium", - "timeLength": "medium", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Sep 9, 2001 05:46:40" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mashi 16, 2024 17:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 16, 2024 17:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 06:14:15 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 06:14:15 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 00:53:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 00:53:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 2050 09:47:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 2050 09:47:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Julayi 15, 1969 17:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 15, 1969 17:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 05:46:40 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 05:46:40 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 8, 2001 18:46:40 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 8, 2001 18:46:40 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Mashi 7, 2024 00:00:01 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 7, 2024 00:00:01 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 13:14:15 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 13:14:15 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 07:53:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 07:53:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 2030 16:47:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 2030 16:47:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 00:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 00:00:00 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 13:46:40 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 13:46:40 GMT-8" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 01:46:40 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 01:46:40 GMT-7" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mashi 17, 2024 01:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 17, 2024 01:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 14:14:15 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 14:14:15 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 08:53:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 08:53:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 2050 17:47:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 2050 17:47:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 01:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 01:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 14:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 14:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 02:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 02:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Mashi 7, 2024 09:00:01 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 7, 2024 09:00:01 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 21:14:15 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 21:14:15 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 15:53:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 15:53:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Meyi 30, 2030 00:47:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 30, 2030 00:47:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 08:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 08:00:00 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 22:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 22:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 09:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 09:46:40 GMT+1" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mashi 17, 2024 03:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 17, 2024 03:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 17:44:15 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 17:44:15 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 11:23:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 11:23:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 2050 20:17:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 2050 20:17:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 03:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 03:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 17:16:40 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 17:16:40 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 06:16:40 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 06:16:40 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Mashi 7, 2024 11:30:01 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 7, 2024 11:30:01 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Julayi 3, 2001 00:44:15 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 3, 2001 00:44:15 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 18:23:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 18:23:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Meyi 30, 2030 03:17:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 30, 2030 03:17:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 10:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 10:30:00 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Januwari 13, 1970 01:16:40 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 13, 1970 01:16:40 GMT+3:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 13:16:40 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 13:16:40 GMT+4:30" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mashi 17, 2024 02:00:00 GMT+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 17, 2024 02:00:00 GMT+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 16:14:15 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 16:14:15 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 11:53:00 GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 11:53:00 GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 2050 19:47:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 2050 19:47:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 03:00:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 03:00:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 16:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 16:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 04:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 04:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Mashi 7, 2024 10:00:01 GMT+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 7, 2024 10:00:01 GMT+2" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 23:14:15 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 23:14:15 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 18:53:00 GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 18:53:00 GMT+4" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Meyi 30, 2030 02:47:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 30, 2030 02:47:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 10:00:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 10:00:00 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Januwari 13, 1970 00:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 13, 1970 00:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 11:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 11:46:40 GMT+3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mashi 17, 2024 10:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 17, 2024 10:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 23:14:15 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 23:14:15 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 17:53:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 17:53:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Meyi 30, 2050 02:47:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 30, 2050 02:47:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 10:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 10:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 23:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 23:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 11:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 11:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Mashi 7, 2024 18:00:01 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 7, 2024 18:00:01 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Julayi 3, 2001 06:14:15 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 3, 2001 06:14:15 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Meyi 30, 1984 00:53:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 30, 1984 00:53:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Meyi 30, 2030 09:47:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 30, 2030 09:47:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 17:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 17:00:00 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Januwari 13, 1970 07:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 13, 1970 07:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 18:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 18:46:40 GMT+10" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mashi 17, 2024 09:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 17, 2024 09:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 22:14:15 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 22:14:15 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 16:53:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 16:53:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Meyi 30, 2050 01:47:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 30, 2050 01:47:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 09:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 09:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 22:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 22:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 10:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 10:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Mashi 7, 2024 17:00:01 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 7, 2024 17:00:01 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Julayi 3, 2001 05:14:15 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 3, 2001 05:14:15 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 23:53:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 23:53:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Meyi 30, 2030 08:47:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 30, 2030 08:47:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 16:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 16:00:00 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Januwari 13, 1970 06:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 13, 1970 06:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 17:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 17:46:40 GMT+9" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mashi 16, 2024 21:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 16, 2024 21:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 10:14:15 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 10:14:15 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 04:53:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 04:53:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 2050 13:47:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 2050 13:47:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Julayi 15, 1969 21:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 15, 1969 21:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 10:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 10:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 8, 2001 22:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 8, 2001 22:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Mashi 7, 2024 05:00:01 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Mashi 7, 2024 05:00:01 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Julayi 2, 2001 17:14:15 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 2, 2001 17:14:15 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 1984 11:53:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 1984 11:53:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Meyi 29, 2030 20:47:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Meyi 29, 2030 20:47:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Julayi 16, 1969 04:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Julayi 16, 1969 04:00:00 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Januwari 12, 1970 18:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Januwari 12, 1970 18:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "Septhemba 9, 2001 05:46:40 GMT-3" - }, - { - "dateLength": "long", - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "Septhemba 9, 2001 05:46:40 GMT-3" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMgqibelo, Mashi 16, 2024 17:00:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMgqibelo, Mashi 16, 2024 17:00:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 06:14:15 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 06:14:15 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 00:53:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 00:53:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 09:47:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 09:47:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 15, 1969 17:00:00 GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 15, 1969 17:00:00 GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 05:46:40 Isikhathi sase-North American Pacific esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 05:46:40 Isikhathi sase-North American Pacific esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMgqibelo, Septhemba 8, 2001 18:46:40 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMgqibelo, Septhemba 8, 2001 18:46:40 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 00:00:01 Isikhathi sase-North American Pacific esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 00:00:01 Isikhathi sase-North American Pacific esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 13:14:15 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 13:14:15 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 07:53:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 07:53:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Meyi 29, 2030 16:47:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Meyi 29, 2030 16:47:00 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 00:00:00 GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 00:00:00 GMT-07:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 13:46:40 Isikhathi sase-North American Pacific esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 13:46:40 Isikhathi sase-North American Pacific esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 01:46:40 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 01:46:40 Isikhathi sase-North American Pacific sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 01:00:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 01:00:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 14:14:15 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 14:14:15 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 08:53:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 08:53:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 17:47:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 17:47:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 01:00:00 GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 01:00:00 GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 14:46:40 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 14:46:40 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 02:46:40 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 02:46:40 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 09:00:01 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 09:00:01 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 21:14:15 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 21:14:15 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 15:53:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 15:53:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 00:47:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 00:47:00 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 08:00:00 GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 08:00:00 GMT+01:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 22:46:40 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 22:46:40 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 09:46:40 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 09:46:40 Isikhathi esivamile saseNtshonalanga Afrika" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 03:30:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 03:30:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 17:44:15 Isikhathi sase-Iran sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 17:44:15 Isikhathi sase-Iran sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 11:23:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 11:23:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 20:17:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 20:17:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 03:30:00 GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 03:30:00 GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 17:16:40 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 17:16:40 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 06:16:40 Isikhathi sase-Iran sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 06:16:40 Isikhathi sase-Iran sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 11:30:01 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 11:30:01 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 3, 2001 00:44:15 Isikhathi sase-Iran sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 3, 2001 00:44:15 Isikhathi sase-Iran sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 18:23:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 18:23:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 03:17:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 03:17:00 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 10:30:00 GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 10:30:00 GMT+03:30" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Januwari 13, 1970 01:16:40 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Januwari 13, 1970 01:16:40 Isikhathi sase-Iran esivamile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 13:16:40 Isikhathi sase-Iran sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 13:16:40 Isikhathi sase-Iran sasemini" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 02:00:00 Isikhathi esijwayelekile sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 02:00:00 Isikhathi esijwayelekile sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 16:14:15 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 16:14:15 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sasehlobo e-Moscow" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sasehlobo e-Moscow" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 19:47:00 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 19:47:00 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 03:00:00 GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 03:00:00 GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 16:46:40 Isikhathi sase-Moscow esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 16:46:40 Isikhathi sase-Moscow esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 04:46:40 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 04:46:40 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 10:00:01 Isikhathi esijwayelekile sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 10:00:01 Isikhathi esijwayelekile sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 23:14:15 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 23:14:15 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 18:53:00 Isikhathi sasehlobo e-Moscow" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 18:53:00 Isikhathi sasehlobo e-Moscow" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 02:47:00 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 02:47:00 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Januwari 13, 1970 00:46:40 Isikhathi sase-Moscow esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Januwari 13, 1970 00:46:40 Isikhathi sase-Moscow esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 11:46:40 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 11:46:40 Isikhathi sasehlobo sase-Eastern Europe" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 10:00:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 10:00:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 23:14:15 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 23:14:15 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 17:53:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 17:53:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Meyi 30, 2050 02:47:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Meyi 30, 2050 02:47:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 10:00:00 GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 23:46:40 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 23:46:40 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 11:46:40 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 11:46:40 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 18:00:01 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 18:00:01 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 3, 2001 06:14:15 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 3, 2001 06:14:15 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Meyi 30, 1984 00:53:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Meyi 30, 1984 00:53:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 09:47:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 09:47:00 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 17:00:00 GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 17:00:00 GMT+10:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Januwari 13, 1970 07:46:40 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Januwari 13, 1970 07:46:40 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 18:46:40 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 18:46:40 Isikhathi esivamile sase-Australian East" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 09:00:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 09:00:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 22:14:15 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 22:14:15 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 16:53:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 16:53:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Meyi 30, 2050 01:47:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Meyi 30, 2050 01:47:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 09:00:00 GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 09:00:00 GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 22:46:40 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 22:46:40 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 10:46:40 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 10:46:40 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 17:00:01 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 17:00:01 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 3, 2001 05:14:15 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 3, 2001 05:14:15 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 23:53:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 23:53:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 08:47:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 08:47:00 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 16:00:00 GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 16:00:00 GMT+09:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Januwari 13, 1970 06:46:40 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Januwari 13, 1970 06:46:40 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 17:46:40 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 17:46:40 Isikhathi sase-Palau" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMgqibelo, Mashi 16, 2024 21:00:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMgqibelo, Mashi 16, 2024 21:00:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 10:14:15 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 10:14:15 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 04:53:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 04:53:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 13:47:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 13:47:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 15, 1969 21:00:00 GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 15, 1969 21:00:00 GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 10:46:40 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 10:46:40 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMgqibelo, Septhemba 8, 2001 22:46:40 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMgqibelo, Septhemba 8, 2001 22:46:40 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 05:00:01 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 05:00:01 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 17:14:15 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 17:14:15 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 11:53:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Meyi 29, 2030 20:47:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Meyi 29, 2030 20:47:00 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 04:00:00 GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 04:00:00 GMT-03:00" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 18:46:40 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 18:46:40 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 05:46:40 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "full", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 05:46:40 Isikhathi sase-Uruguay esijwayelekile" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMgqibelo, Mashi 16, 2024 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMgqibelo, Mashi 16, 2024 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 06:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 06:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 00:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 00:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 09:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 09:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 15, 1969 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 15, 1969 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 05:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 05:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMgqibelo, Septhemba 8, 2001 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMgqibelo, Septhemba 8, 2001 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 00:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 00:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 13:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 13:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 07:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 07:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Meyi 29, 2030 16:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Meyi 29, 2030 16:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 00:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 00:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 13:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 13:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 01:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 01:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 01:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 01:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 14:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 14:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 08:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 08:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 17:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 17:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 01:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 01:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 14:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 14:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 02:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 02:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 21:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 21:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 15:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 15:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 00:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 00:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 08:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 08:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 09:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 09:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 03:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 03:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 17:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 17:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 11:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 20:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 20:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 03:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 03:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 17:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 17:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 06:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 06:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 11:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 3, 2001 00:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 3, 2001 00:44" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 18:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 18:23" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 03:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 03:17" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 10:30" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Januwari 13, 1970 01:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Januwari 13, 1970 01:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 13:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 13:16" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 02:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 02:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 16:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 16:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 11:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 19:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 19:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 03:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 03:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 16:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 16:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 04:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 04:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 23:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 23:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 18:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 18:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 02:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 02:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Januwari 13, 1970 00:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Januwari 13, 1970 00:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 23:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 23:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 17:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 17:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Meyi 30, 2050 02:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Meyi 30, 2050 02:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 10:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 23:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 23:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 11:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 18:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 18:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 3, 2001 06:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 3, 2001 06:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Meyi 30, 1984 00:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Meyi 30, 1984 00:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 09:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 09:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Januwari 13, 1970 07:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Januwari 13, 1970 07:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Mashi 17, 2024 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Mashi 17, 2024 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 22:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 22:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 16:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 16:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Meyi 30, 2050 01:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Meyi 30, 2050 01:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 09:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 22:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 17:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 3, 2001 05:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 3, 2001 05:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 23:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 23:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Meyi 30, 2030 08:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Meyi 30, 2030 08:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 16:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 16:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Januwari 13, 1970 06:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Januwari 13, 1970 06:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 17:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 17:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMgqibelo, Mashi 16, 2024 21:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMgqibelo, Mashi 16, 2024 21:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 10:14" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 04:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 04:53" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ISonto, Meyi 29, 2050 13:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Meyi 29, 2050 13:47" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Julayi 15, 1969 21:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Julayi 15, 1969 21:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 10:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMgqibelo, Septhemba 8, 2001 22:46" - }, - { - "dateLength": "full", "timeLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMgqibelo, Septhemba 8, 2001 22:46" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "12:00 AM" }, { - "dateLength": "full", "timeLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesine, Mashi 7, 2024 05:00" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50 AM" }, { - "dateLength": "full", "timeLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ULwesine, Mashi 7, 2024 05:00" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00 PM" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Julayi 2, 2001 17:14" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Jan 1, 2000" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Julayi 2, 2001 17:14" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Jul 1, 2024" }, { - "dateLength": "full", - "timeLength": "short", + "dateLength": "medium", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesibili, Meyi 29, 1984 11:53" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Jul 15, 2014" }, { "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", "dateTimeFormatType": "atTime", - "expected": "ULwesibili, Meyi 29, 1984 11:53" - }, - { - "dateLength": "full", - "timeLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Meyi 29, 2030 20:47" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Saturday, January 1, 2000 at 12:00 AM" }, { "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Meyi 29, 2030 20:47" - }, - { - "dateLength": "full", - "timeLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "ULwesithathu, Julayi 16, 1969 04:00" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Monday, July 1, 2024 at 8:50 AM" }, { "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", "dateTimeFormatType": "atTime", - "expected": "ULwesithathu, Julayi 16, 1969 04:00" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "standard", - "expected": "UMsombuluko, Januwari 12, 1970 18:46" - }, - { - "dateLength": "full", - "timeLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "UMsombuluko, Januwari 12, 1970 18:46" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Tuesday, July 15, 2014 at 12:00 PM" }, { "dateLength": "full", "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", "dateTimeFormatType": "standard", - "expected": "ISonto, Septhemba 9, 2001 05:46" - }, - { - "dateLength": "full", - "timeLength": "short", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "dateTimeFormatType": "atTime", - "expected": "ISonto, Septhemba 9, 2001 05:46" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "Mashi 16, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "Julayi 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "Julayi 15, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "Januwari 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "Septhemba 8, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "Mashi 7, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "Julayi 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "Meyi 29, 2030" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "Julayi 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "Januwari 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "Septhemba 9, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "Mashi 17, 2024" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "Julayi 2, 2001" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "Meyi 29, 1984" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "Meyi 29, 2050" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "Julayi 16, 1969" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "Januwari 12, 1970" - }, - { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "Septhemba 9, 2001" - }, - { - "dateLength": "long", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "Mashi 7, 2024" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Saturday, January 1, 2000, 12:00 AM" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "Julayi 2, 2001" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Monday, July 1, 2024, 8:50 AM" }, { - "dateLength": "long", + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Tuesday, July 15, 2014, 12:00 PM" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "Meyi 30, 2030" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1/00, 12:00:00 AM Greenwich Mean Time" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1/00, 12:00:00 AM Australian Central Daylight Time" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "Januwari 12, 1970" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "7/1/24, 8:50:07 AM Greenwich Mean Time" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2024-07-01T08:50:07+09:30[Australia/Adelaide]", + "expected": "7/1/24, 8:50:07 AM Australian Central Standard Time" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "Mashi 17, 2024" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "7/15/14, 12:00:00 PM Greenwich Mean Time" }, { - "dateLength": "long", + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "Julayi 2, 2001" + "locale": "en", + "input": "2014-07-15T12:00+09:30[Australia/Adelaide]", + "expected": "7/15/14, 12:00:00 PM Australian Central Standard Time" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Sat, 1/1/00" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "Meyi 29, 2050" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Mon, 7/1/24" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Tue, 7/15/14" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "Januwari 12, 1970" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Sat, Jan 1, 2000" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Mon, Jul 1, 2024" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "Mashi 7, 2024" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Tue, Jul 15, 2014" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "Julayi 3, 2001" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Saturday, January 1, 2000" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Monday, July 1, 2024" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "Meyi 30, 2030" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Tuesday, July 15, 2014" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Sat, 1/1/00" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "Januwari 13, 1970" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Mon, 7/1/24" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Tue, 7/15/14" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "Mashi 17, 2024" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Sat, Jan 1, 2000" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "Julayi 2, 2001" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Mon, Jul 1, 2024" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Tue, Jul 15, 2014" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "Meyi 29, 2050" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Saturday, January 1, 2000" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "Monday, July 1, 2024" }, { - "dateLength": "long", + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "Januwari 12, 1970" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "Tuesday, July 15, 2014" }, { - "dateLength": "long", + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Greenwich Mean Time" }, { - "dateLength": "long", + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "Mashi 7, 2024" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "Australian Central Daylight Time" }, { - "dateLength": "long", + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "location", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "Julayi 2, 2001" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "GMT" }, { - "dateLength": "long", + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "location", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "Adelaide Time" }, { - "dateLength": "long", + "semanticSkeleton": "Z", + "zoneStyle": "generic", "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "Meyi 30, 2030" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "Greenwich Mean Time" }, { - "dateLength": "long", + "semanticSkeleton": "Z", + "zoneStyle": "generic", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "Central Australia Time" }, { - "dateLength": "long", + "semanticSkeleton": "Z", + "zoneStyle": "offset", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "Januwari 13, 1970" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "GMT" }, { - "dateLength": "long", + "semanticSkeleton": "Z", + "zoneStyle": "offset", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "GMT+10:30" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "specific", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "Mashi 17, 2024" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1, 12:00:00 AM GMT" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "specific", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "Julayi 2, 2001" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1, 12:00:00 AM GMT+10:30" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "January 1, 12:00:00 AM GMT" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 2050" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "January 1, 12:00:00 AM GMT+10:30" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "location", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1, 12:00:00 AM GMT" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "location", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "Januwari 12, 1970" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1, 12:00:00 AM Adelaide Time" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "location", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "January 1, 12:00:00 AM GMT" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "location", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "Mashi 7, 2024" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "January 1, 12:00:00 AM Adelaide Time" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "generic", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "Julayi 3, 2001" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1, 12:00:00 AM GMT" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "generic", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 1984" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1, 12:00:00 AM Adelaide Time" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "generic", "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "Meyi 30, 2030" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "January 1, 12:00:00 AM GMT" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "generic", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "January 1, 12:00:00 AM Adelaide Time" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "offset", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "Januwari 13, 1970" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1, 12:00:00 AM GMT" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "offset", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1, 12:00:00 AM GMT+10:30" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "offset", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "Mashi 17, 2024" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "January 1, 12:00:00 AM GMT" }, { - "dateLength": "long", + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "offset", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "Julayi 2, 2001" + "locale": "en", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "January 1, 12:00:00 AM GMT+10:30" }, { - "dateLength": "long", + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "January" }, { - "dateLength": "long", + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "Meyi 30, 2050" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "July" }, { - "dateLength": "long", + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "July" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "Januwari 12, 1970" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "12:00:00 AM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07 AM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "Mashi 7, 2024" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00 PM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "Julayi 3, 2001" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "12:00:00 AM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07 AM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "Meyi 30, 2030" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00 PM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "Julayi 16, 1969" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "12:00:00 AM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "Januwari 13, 1970" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07 AM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "Septhemba 9, 2001" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00 PM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "Mashi 16, 2024" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "12:00:00 AM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "Julayi 2, 2001" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07 AM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "Meyi 29, 1984" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00 PM" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "Meyi 29, 2050" + "locale": "en", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "00:00:00" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "Julayi 15, 1969" + "locale": "en", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "08:50:07" }, { - "dateLength": "long", + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "Januwari 12, 1970" + "locale": "en", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "Septhemba 8, 2001" + "timeLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "١٢:٠٠ ص" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "Mashi 7, 2024" + "timeLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "٨:٥٠ ص" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "Julayi 2, 2001" + "timeLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "١٢:٠٠ م" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "Meyi 29, 1984" + "dateLength": "medium", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤ رمضان ١٤٢٠ هـ" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "Meyi 29, 2030" + "dateLength": "medium", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "٢٤ ذو الحجة ١٤٤٥ هـ" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "Julayi 16, 1969" + "dateLength": "medium", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "١٧ رمضان ١٤٣٥ هـ" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "Januwari 12, 1970" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "السبت، ٢٤ رمضان ١٤٢٠ هـ في ١٢:٠٠ ص" }, { - "dateLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "Septhemba 9, 2001" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "الاثنين، ٢٤ ذو الحجة ١٤٤٥ هـ في ٨:٥٠ ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-7" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "الثلاثاء، ١٧ رمضان ١٤٣٥ هـ في ١٢:٠٠ م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T06:14:15-07:00[America/Los_Angeles]", - "expected": "06:14:15 GMT-7" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "السبت، ٢٤ رمضان ١٤٢٠ هـ، ١٢:٠٠ ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T00:53-07:00[America/Los_Angeles]", - "expected": "00:53:00 GMT-7" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "الاثنين، ٢٤ ذو الحجة ١٤٤٥ هـ، ٨:٥٠ ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T09:47-07:00[America/Los_Angeles]", - "expected": "09:47:00 GMT-7" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "الثلاثاء، ١٧ رمضان ١٤٣٥ هـ، ١٢:٠٠ م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T17:00-07:00[America/Los_Angeles]", - "expected": "17:00:00 GMT-7" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤‏/٩‏/١٤٢٠ هـ, ١٢:٠٠:٠٠ ص توقيت غرينتش" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T05:46:40-08:00[America/Los_Angeles]", - "expected": "05:46:40 GMT-8" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤‏/٩‏/١٤٢٠ هـ, ١٢:٠٠:٠٠ ص توقيت وسط أستراليا الصيفي" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T18:46:40-07:00[America/Los_Angeles]", - "expected": "18:46:40 GMT-7" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "٢٤‏/١٢‏/١٤٤٥ هـ, ٨:٥٠:٠٧ ص توقيت غرينتش" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T00:00:01-08:00[America/Los_Angeles]", - "expected": "00:00:01 GMT-8" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07+09:30[Australia/Adelaide]", + "expected": "٢٤‏/١٢‏/١٤٤٥ هـ, ٨:٥٠:٠٧ ص توقيت وسط أستراليا الرسمي" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T13:14:15-07:00[America/Los_Angeles]", - "expected": "13:14:15 GMT-7" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "١٧‏/٩‏/١٤٣٥ هـ, ١٢:٠٠:٠٠ م توقيت غرينتش" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T07:53-07:00[America/Los_Angeles]", - "expected": "07:53:00 GMT-7" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00+09:30[Australia/Adelaide]", + "expected": "١٧‏/٩‏/١٤٣٥ هـ, ١٢:٠٠:٠٠ م توقيت وسط أستراليا الرسمي" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T16:47-07:00[America/Los_Angeles]", - "expected": "16:47:00 GMT-7" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "السبت، ٢٤ ٩ ١٤٢٠ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T00:00-07:00[America/Los_Angeles]", - "expected": "00:00:00 GMT-7" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "الاثنين، ٢٤ ١٢ ١٤٤٥ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T13:46:40-08:00[America/Los_Angeles]", - "expected": "13:46:40 GMT-8" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "الثلاثاء، ١٧ ٩ ١٤٣٥ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T01:46:40-07:00[America/Los_Angeles]", - "expected": "01:46:40 GMT-7" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "السبت، ٢٤ رمضان ١٤٢٠ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "الاثنين، ٢٤ ذو الحجة ١٤٤٥ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T14:14:15+01:00[Africa/Luanda]", - "expected": "14:14:15 GMT+1" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "الثلاثاء، ١٧ رمضان ١٤٣٥ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T08:53+01:00[Africa/Luanda]", - "expected": "08:53:00 GMT+1" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "السبت، ٢٤ رمضان ١٤٢٠ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T17:47+01:00[Africa/Luanda]", - "expected": "17:47:00 GMT+1" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "الاثنين، ٢٤ ذو الحجة ١٤٤٥ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T01:00+01:00[Africa/Luanda]", - "expected": "01:00:00 GMT+1" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "الثلاثاء، ١٧ رمضان ١٤٣٥ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T14:46:40+01:00[Africa/Luanda]", - "expected": "14:46:40 GMT+1" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "السبت، ٢٤ ٩ ١٤٢٠ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T02:46:40+01:00[Africa/Luanda]", - "expected": "02:46:40 GMT+1" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "الاثنين، ٢٤ ١٢ ١٤٤٥ هـ" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T09:00:01+01:00[Africa/Luanda]", - "expected": "09:00:01 GMT+1" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "الثلاثاء، ١٧ ٩ ١٤٣٥ هـ" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "السبت، ٢٤ رمضان ١٤٢٠ هـ" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "الاثنين، ٢٤ ذو الحجة ١٤٤٥ هـ" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "الثلاثاء، ١٧ رمضان ١٤٣٥ هـ" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "السبت، ٢٤ رمضان ١٤٢٠ هـ" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "الاثنين، ٢٤ ذو الحجة ١٤٤٥ هـ" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "الثلاثاء، ١٧ رمضان ١٤٣٥ هـ" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "توقيت غرينتش" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "توقيت وسط أستراليا الصيفي" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "غرينتش" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "توقيت أديليد" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "generic", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "توقيت غرينتش" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "generic", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "توقيت وسط أستراليا" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "offset", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "غرينتش" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "offset", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "غرينتش+١٠:٣٠" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "specific", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤‏/٩، ١٢:٠٠:٠٠ ص غرينتش" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "specific", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤‏/٩، ١٢:٠٠:٠٠ ص غرينتش+١٠:٣٠" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤ رمضان، ١٢:٠٠:٠٠ ص غرينتش" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤ رمضان، ١٢:٠٠:٠٠ ص غرينتش+١٠:٣٠" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "location", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤‏/٩، ١٢:٠٠:٠٠ ص غرينتش" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "location", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤‏/٩، ١٢:٠٠:٠٠ ص توقيت أديليد" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤ رمضان، ١٢:٠٠:٠٠ ص غرينتش" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤ رمضان، ١٢:٠٠:٠٠ ص توقيت أديليد" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "generic", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤‏/٩، ١٢:٠٠:٠٠ ص غرينتش" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "generic", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤‏/٩، ١٢:٠٠:٠٠ ص توقيت أديليد" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "generic", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤ رمضان، ١٢:٠٠:٠٠ ص غرينتش" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "generic", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤ رمضان، ١٢:٠٠:٠٠ ص توقيت أديليد" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "offset", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤‏/٩، ١٢:٠٠:٠٠ ص غرينتش" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "offset", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤‏/٩، ١٢:٠٠:٠٠ ص غرينتش+١٠:٣٠" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "offset", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٢٤ رمضان، ١٢:٠٠:٠٠ ص غرينتش" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "offset", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "٢٤ رمضان، ١٢:٠٠:٠٠ ص غرينتش+١٠:٣٠" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "رمضان" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "ذو الحجة" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "رمضان" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠ ص" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "٨:٥٠:٠٧ ص" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠ م" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠ ص" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "٨:٥٠:٠٧ ص" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠ م" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠ ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T21:14:15+01:00[Africa/Luanda]", - "expected": "21:14:15 GMT+1" + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "٨:٥٠:٠٧ ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T15:53+01:00[Africa/Luanda]", - "expected": "15:53:00 GMT+1" + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠ م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T00:47+01:00[Africa/Luanda]", - "expected": "00:47:00 GMT+1" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠ ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T08:00+01:00[Africa/Luanda]", - "expected": "08:00:00 GMT+1" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "٨:٥٠:٠٧ ص" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+01:00[Africa/Luanda]", - "expected": "22:46:40 GMT+1" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠ م" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T09:46:40+01:00[Africa/Luanda]", - "expected": "09:46:40 GMT+1" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "٠٠:٠٠:٠٠" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "٠٨:٥٠:٠٧" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:44:15+04:30[Asia/Tehran]", - "expected": "17:44:15 GMT+4:30" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "islamic-civil", + "locale": "ar-SA", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "١٢:٠٠:٠٠" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:23+03:30[Asia/Tehran]", - "expected": "11:23:00 GMT+3:30" + "timeLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "00:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T20:17+03:30[Asia/Tehran]", - "expected": "20:17:00 GMT+3:30" + "timeLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "08:50" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:30+03:30[Asia/Tehran]", - "expected": "03:30:00 GMT+3:30" + "timeLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T17:16:40+03:30[Asia/Tehran]", - "expected": "17:16:40 GMT+3:30" + "dateLength": "medium", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1 ม.ค. 2543" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T06:16:40+04:30[Asia/Tehran]", - "expected": "06:16:40 GMT+4:30" + "dateLength": "medium", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "1 ก.ค. 2567" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T11:30:01+03:30[Asia/Tehran]", - "expected": "11:30:01 GMT+3:30" + "dateLength": "medium", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "15 ก.ค. 2557" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T00:44:15+04:30[Asia/Tehran]", - "expected": "00:44:15 GMT+4:30" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "วันเสาร์ที่ 1 มกราคม พ.ศ. 2543 เวลา 00:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:23+03:30[Asia/Tehran]", - "expected": "18:23:00 GMT+3:30" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "วันจันทร์ที่ 1 กรกฎาคม พ.ศ. 2567 เวลา 08:50" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T03:17+03:30[Asia/Tehran]", - "expected": "03:17:00 GMT+3:30" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "วันอังคารที่ 15 กรกฎาคม พ.ศ. 2557 เวลา 12:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:30+03:30[Asia/Tehran]", - "expected": "10:30:00 GMT+3:30" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "วันเสาร์ที่ 1 มกราคม พ.ศ. 2543 00:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T01:16:40+03:30[Asia/Tehran]", - "expected": "01:16:40 GMT+3:30" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "วันจันทร์ที่ 1 กรกฎาคม พ.ศ. 2567 08:50" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T13:16:40+04:30[Asia/Tehran]", - "expected": "13:16:40 GMT+4:30" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "วันอังคารที่ 15 กรกฎาคม พ.ศ. 2557 12:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T02:00+02:00[Europe/Kiev]", - "expected": "02:00:00 GMT+2" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1/43 0 นาฬิกา 00 นาที 00 วินาที เวลามาตรฐานกรีนิช" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T16:14:15+03:00[Europe/Kiev]", - "expected": "16:14:15 GMT+3" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1/43 0 นาฬิกา 00 นาที 00 วินาที เวลาออมแสงทางตอนกลางของออสเตรเลีย" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53+04:00[Europe/Kiev]", - "expected": "11:53:00 GMT+4" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "1/7/67 8 นาฬิกา 50 นาที 07 วินาที เวลามาตรฐานกรีนิช" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T19:47+03:00[Europe/Kiev]", - "expected": "19:47:00 GMT+3" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07+09:30[Australia/Adelaide]", + "expected": "1/7/67 8 นาฬิกา 50 นาที 07 วินาที เวลามาตรฐานทางตอนกลางของออสเตรเลีย" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T03:00+03:00[Europe/Kiev]", - "expected": "03:00:00 GMT+3" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "15/7/57 12 นาฬิกา 00 นาที 00 วินาที เวลามาตรฐานกรีนิช" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T16:46:40+03:00[Europe/Kiev]", - "expected": "16:46:40 GMT+3" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00+09:30[Australia/Adelaide]", + "expected": "15/7/57 12 นาฬิกา 00 นาที 00 วินาที เวลามาตรฐานทางตอนกลางของออสเตรเลีย" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T04:46:40+03:00[Europe/Kiev]", - "expected": "04:46:40 GMT+3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "ส. 1/1/43" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T10:00:01+02:00[Europe/Kiev]", - "expected": "10:00:01 GMT+2" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "จ. 1/7/67" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+03:00[Europe/Kiev]", - "expected": "23:14:15 GMT+3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "อ. 15/7/57" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T18:53+04:00[Europe/Kiev]", - "expected": "18:53:00 GMT+4" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "ส. 1 ม.ค. 2543" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T02:47+03:00[Europe/Kiev]", - "expected": "02:47:00 GMT+3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "จ. 1 ก.ค. 2567" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+03:00[Europe/Kiev]", - "expected": "10:00:00 GMT+3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "อ. 15 ก.ค. 2557" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T00:46:40+03:00[Europe/Kiev]", - "expected": "00:46:40 GMT+3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "วันเสาร์ที่ 1 มกราคม 2543" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+03:00[Europe/Kiev]", - "expected": "11:46:40 GMT+3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "วันจันทร์ที่ 1 กรกฎาคม 2567" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "วันอังคารที่ 15 กรกฎาคม 2557" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T23:14:15+10:00[Australia/Brisbane]", - "expected": "23:14:15 GMT+10" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "ส. 1/1/43" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T17:53+10:00[Australia/Brisbane]", - "expected": "17:53:00 GMT+10" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "จ. 1/7/67" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T02:47+10:00[Australia/Brisbane]", - "expected": "02:47:00 GMT+10" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "อ. 15/7/57" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "ส. 1 ม.ค. 2543" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "จ. 1 ก.ค. 2567" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "อ. 15 ก.ค. 2557" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "วันเสาร์ที่ 1 มกราคม 2543" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "วันจันทร์ที่ 1 กรกฎาคม 2567" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "วันอังคารที่ 15 กรกฎาคม 2557" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "เวลามาตรฐานกรีนิช" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "เวลาออมแสงทางตอนกลางของออสเตรเลีย" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "GMT" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "เวลาแอดิเลด" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "generic", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "เวลามาตรฐานกรีนิช" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "generic", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "เวลาออสเตรเลียกลาง" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "offset", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "GMT" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "offset", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "GMT+10:30" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "specific", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1 0 นาฬิกา 00 นาที 00 วินาที GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "specific", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1 0 นาฬิกา 00 นาที 00 วินาที GMT+10:30" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1 มกราคม 0 นาฬิกา 00 นาที 00 วินาที GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1 มกราคม 0 นาฬิกา 00 นาที 00 วินาที GMT+10:30" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "location", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1 0 นาฬิกา 00 นาที 00 วินาที GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "location", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1 0 นาฬิกา 00 นาที 00 วินาที เวลาแอดิเลด" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1 มกราคม 0 นาฬิกา 00 นาที 00 วินาที GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1 มกราคม 0 นาฬิกา 00 นาที 00 วินาที เวลาแอดิเลด" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "generic", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1 0 นาฬิกา 00 นาที 00 วินาที GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "generic", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1 0 นาฬิกา 00 นาที 00 วินาที เวลาแอดิเลด" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "generic", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1 มกราคม 0 นาฬิกา 00 นาที 00 วินาที GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "generic", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1 มกราคม 0 นาฬิกา 00 นาที 00 วินาที เวลาแอดิเลด" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "offset", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1 0 นาฬิกา 00 นาที 00 วินาที GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "offset", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1 0 นาฬิกา 00 นาที 00 วินาที GMT+10:30" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "offset", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1 มกราคม 0 นาฬิกา 00 นาที 00 วินาที GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "offset", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1 มกราคม 0 นาฬิกา 00 นาที 00 วินาที GMT+10:30" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "มกราคม" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "กรกฎาคม" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "กรกฎาคม" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "00:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "08:50:07" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "12:00:00 ก่อนเที่ยง" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07 ก่อนเที่ยง" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00 หลังเที่ยง" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "12:00:00 ก่อนเที่ยง" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T10:00+10:00[Australia/Brisbane]", - "expected": "10:00:00 GMT+10" + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07 ก่อนเที่ยง" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T23:46:40+10:00[Australia/Brisbane]", - "expected": "23:46:40 GMT+10" + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00 หลังเที่ยง" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T11:46:40+10:00[Australia/Brisbane]", - "expected": "11:46:40 GMT+10" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "12:00:00 ก่อนเที่ยง" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T18:00:01+10:00[Australia/Brisbane]", - "expected": "18:00:01 GMT+10" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07 ก่อนเที่ยง" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T06:14:15+10:00[Australia/Brisbane]", - "expected": "06:14:15 GMT+10" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00 หลังเที่ยง" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-30T00:53+10:00[Australia/Brisbane]", - "expected": "00:53:00 GMT+10" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "00:00:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T09:47+10:00[Australia/Brisbane]", - "expected": "09:47:00 GMT+10" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "08:50:07" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T17:00+10:00[Australia/Brisbane]", - "expected": "17:00:00 GMT+10" + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "buddhist", + "locale": "th-TH", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T07:46:40+10:00[Australia/Brisbane]", - "expected": "07:46:40 GMT+10" + "timeLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "0:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T18:46:40+10:00[Australia/Brisbane]", - "expected": "18:46:40 GMT+10" + "timeLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-17T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9" + "timeLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T22:14:15+09:00[Pacific/Palau]", - "expected": "22:14:15 GMT+9" + "dateLength": "medium", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "平成12年1月1日" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T16:53+09:00[Pacific/Palau]", - "expected": "16:53:00 GMT+9" + "dateLength": "medium", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "令和6年7月1日" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-30T01:47+09:00[Pacific/Palau]", - "expected": "01:47:00 GMT+9" + "dateLength": "medium", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "平成26年7月15日" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T09:00+09:00[Pacific/Palau]", - "expected": "09:00:00 GMT+9" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "平成12年1月1日土曜日 0:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T22:46:40+09:00[Pacific/Palau]", - "expected": "22:46:40 GMT+9" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "令和6年7月1日月曜日 8:50" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T10:46:40+09:00[Pacific/Palau]", - "expected": "10:46:40 GMT+9" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "平成26年7月15日火曜日 12:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T17:00:01+09:00[Pacific/Palau]", - "expected": "17:00:01 GMT+9" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "平成12年1月1日土曜日 0:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-03T05:14:15+09:00[Pacific/Palau]", - "expected": "05:14:15 GMT+9" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "令和6年7月1日月曜日 8:50" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T23:53+09:00[Pacific/Palau]", - "expected": "23:53:00 GMT+9" + "dateLength": "full", + "timeLength": "short", + "dateTimeFormatType": "standard", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "平成26年7月15日火曜日 12:00" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-30T08:47+09:00[Pacific/Palau]", - "expected": "08:47:00 GMT+9" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "H12/1/1 0時00分00秒 グリニッジ標準時" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T16:00+09:00[Pacific/Palau]", - "expected": "16:00:00 GMT+9" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "H12/1/1 0時00分00秒 オーストラリア中部夏時間" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-13T06:46:40+09:00[Pacific/Palau]", - "expected": "06:46:40 GMT+9" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "R6/7/1 8時50分07秒 グリニッジ標準時" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T17:46:40+09:00[Pacific/Palau]", - "expected": "17:46:40 GMT+9" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07+09:30[Australia/Adelaide]", + "expected": "R6/7/1 8時50分07秒 オーストラリア中部標準時" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-16T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "H26/7/15 12時00分00秒 グリニッジ標準時" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T10:14:15-03:00[America/Montevideo]", - "expected": "10:14:15 GMT-3" + "dateLength": "short", + "timeLength": "full", + "dateTimeFormatType": "atTime", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00+09:30[Australia/Adelaide]", + "expected": "H26/7/15 12時00分00秒 オーストラリア中部標準時" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T04:53-03:00[America/Montevideo]", - "expected": "04:53:00 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "H12年1月1日土" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2050-05-29T13:47-03:00[America/Montevideo]", - "expected": "13:47:00 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "R6年7月1日月" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-15T21:00-03:00[America/Montevideo]", - "expected": "21:00:00 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "H26年7月15日火" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T10:46:40-03:00[America/Montevideo]", - "expected": "10:46:40 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "平成12年1月1日(土)" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-08T22:46:40-03:00[America/Montevideo]", - "expected": "22:46:40 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "令和6年7月1日(月)" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2024-03-07T05:00:01-03:00[America/Montevideo]", - "expected": "05:00:01 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "平成26年7月15日(火)" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-07-02T17:14:15-03:00[America/Montevideo]", - "expected": "17:14:15 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "平成12年1月1日土曜日" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1984-05-29T11:53-03:00[America/Montevideo]", - "expected": "11:53:00 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "令和6年7月1日月曜日" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2030-05-29T20:47-03:00[America/Montevideo]", - "expected": "20:47:00 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "平成26年7月15日火曜日" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1969-07-16T04:00-03:00[America/Montevideo]", - "expected": "04:00:00 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "H12年1月1日土" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "1970-01-12T18:46:40-03:00[America/Montevideo]", - "expected": "18:46:40 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "R6年7月1日月" }, { - "timeLength": "long", - "calendar": "gregorian", - "locale": "zu", - "input": "2001-09-09T05:46:40-03:00[America/Montevideo]", - "expected": "05:46:40 GMT-3" + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "short", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "H26年7月15日火" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "平成12年1月1日(土)" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "令和6年7月1日(月)" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "medium", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "平成26年7月15日(火)" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "平成12年1月1日土曜日" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "令和6年7月1日月曜日" + }, + { + "semanticSkeleton": "YMDE", + "semanticSkeletonLength": "long", + "yearStyle": "with_era", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "平成26年7月15日火曜日" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "グリニッジ標準時" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "オーストラリア中部夏時間" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "GMT" + }, + { + "semanticSkeleton": "Z", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "アデレード時間" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "generic", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "グリニッジ標準時" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "generic", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "オーストラリア中部時間" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "offset", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "GMT" + }, + { + "semanticSkeleton": "Z", + "zoneStyle": "offset", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "GMT+10:30" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "specific", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1 0:00:00 GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "specific", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1 0:00:00 GMT+10:30" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1月1日 0:00:00 GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "specific", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1月1日 0:00:00 GMT+10:30" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "location", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1 0時00分00秒 GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "location", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1 0時00分00秒 アデレード時間" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1月1日 0時00分00秒 GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "location", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1月1日 0時00分00秒 アデレード時間" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "generic", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1 0時00分00秒 GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "generic", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1 0時00分00秒 アデレード時間" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "generic", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1月1日 0時00分00秒 GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "generic", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1月1日 0時00分00秒 アデレード時間" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "offset", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1/1 0時00分00秒 GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "short", + "zoneStyle": "offset", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1/1 0時00分00秒 GMT+10:30" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "offset", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1月1日 0時00分00秒 GMT" + }, + { + "semanticSkeleton": "MDTZ", + "semanticSkeletonLength": "long", + "zoneStyle": "offset", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00+10:30[Australia/Adelaide]", + "expected": "1月1日 0時00分00秒 GMT+10:30" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "1月" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "7月" + }, + { + "semanticSkeleton": "M", + "semanticSkeletonLength": "long", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "7月" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "0:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "午前0:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "午前8:50:07" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "short", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "午後0:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "午前0:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "午前8:50:07" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "medium", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "午後0:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "午前0:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "午前8:50:07" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H12", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "午後0:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2000-01-01T00:00Z[Etc/GMT]", + "expected": "0:00:00" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2024-07-01T08:50:07Z[Etc/GMT]", + "expected": "8:50:07" + }, + { + "semanticSkeleton": "T", + "semanticSkeletonLength": "long", + "hourCycle": "H23", + "calendar": "japanese", + "locale": "ja-JP", + "input": "2014-07-15T12:00Z[Etc/GMT]", + "expected": "12:00:00" } ] From 06e3da65d339b182ef3715315aaa3825ca205f09 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Wed, 22 Jan 2025 16:59:09 -0800 Subject: [PATCH 12/15] CLDR-18128 Remove old code, add TODOs --- .../cldr/tool/GenerateDateTimeTestData.java | 374 +----------------- 1 file changed, 8 insertions(+), 366 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index ba112dd5d43..d4648078221 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -1,6 +1,5 @@ package org.unicode.cldr.tool; -import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.collect.ImmutableSet; import com.google.gson.Gson; @@ -22,11 +21,7 @@ import java.time.ZoneId; import java.time.ZoneOffset; import java.time.ZonedDateTime; -import java.util.ArrayList; -import java.util.Arrays; -import java.util.Collection; import java.util.HashSet; -import java.util.LinkedList; import java.util.List; import java.util.Map; import java.util.Optional; @@ -107,110 +102,6 @@ private static final ImmutableMap.Builder newMapStringToObjectBu return ImmutableMap.builder(); } - private static final ImmutableSet> FIELD_STYLE_COMBINATIONS = - ImmutableSet.of( - newMapStringToObjectBuilder() - .put("dateLength", "short") - .put("timeLength", "short") - .build(), - newMapStringToObjectBuilder() - .put("dateLength", "medium") - .put("timeLength", "medium") - .build(), - newMapStringToObjectBuilder() - .put("dateLength", "long") - .put("timeLength", "long") - .build(), - newMapStringToObjectBuilder() - .put("dateLength", "full") - .put("timeLength", "full") - .build(), - newMapStringToObjectBuilder() - .put("dateLength", "full") - .put("timeLength", "short") - .build(), - newMapStringToObjectBuilder().put("dateLength", "long").build(), - newMapStringToObjectBuilder().put("timeLength", "long").build(), - newMapStringToObjectBuilder().put("hour", "numeric").build(), - newMapStringToObjectBuilder() - .put("hour", "numeric") - .put("minute", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("hour", "numeric") - .put("minute", "numeric") - .put("second", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("hour", "numeric") - .put("minute", "numeric") - .put("second", "numeric") - .put("fractionalSecondDigits", 1) - .build(), - newMapStringToObjectBuilder() - .put("hour", "numeric") - .put("minute", "numeric") - .put("second", "numeric") - .put("fractionalSecondDigits", 2) - .build(), - newMapStringToObjectBuilder() - .put("hour", "numeric") - .put("minute", "numeric") - .put("second", "numeric") - .put("fractionalSecondDigits", 3) - .build(), - newMapStringToObjectBuilder() - .put("hour", "numeric") - .put("minute", "numeric") - .put("second", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("month", "numeric") - .put("weekday", "long") - .put("day", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("month", "2-digit") - .put("weekday", "long") - .put("day", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("month", "long") - .put("weekday", "long") - .put("day", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("month", "short") - .put("weekday", "long") - .put("day", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("month", "narrow") - .put("weekday", "long") - .put("day", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("month", "short") - .put("weekday", "short") - .put("day", "numeric") - .build(), - newMapStringToObjectBuilder() - .put("month", "short") - .put("weekday", "narrow") - .put("day", "numeric") - .build(), - - // TODO: remove non-semantic skeletons - newMapStringToObjectBuilder().put("era", "long").build(), - newMapStringToObjectBuilder().put("era", "short").build(), - newMapStringToObjectBuilder().put("era", "narrow").build(), - newMapStringToObjectBuilder().put("timeZoneName", "long").build(), - newMapStringToObjectBuilder().put("timeZoneName", "short").build(), - newMapStringToObjectBuilder().put("timeZoneName", "shortOffset").build(), - newMapStringToObjectBuilder().put("timeZoneName", "longOffset").build(), - newMapStringToObjectBuilder().put("timeZoneName", "shortGeneric").build(), - newMapStringToObjectBuilder().put("timeZoneName", "longGeneric").build()); - // Note: CLDR uses the identifier "gregorian", although BCP-47 which came later specifies // "gregory" as the calendar identifier. private static final ImmutableSet CALENDARS = @@ -339,91 +230,6 @@ private static final ImmutableMap.Builder newMapStringToObjectBu .put("nanosecond", 0) .build()); - private static final ImmutableMap> - FIELD_STYLE_TO_SKELETON = - newMapStringToMapBuilder() - .put( - "era", - newMapStringToObjectBuilder() - .put("long", "GGGG") - .put("short", "GG") - .put("narrow", "GGGGG") - .build()) - .put( - "year", - newMapStringToObjectBuilder() - .put("numeric", "y") - .put("2-digit", "yy") - .build()) - .put( - "quarter", - newMapStringToObjectBuilder().put("numeric", "q").build()) - .put( - "month", - newMapStringToObjectBuilder() - .put("numeric", "M") - .put("2-digit", "MM") - .put("long", "MMMM") - .put("short", "MMM") - .put("narrow", "MMMMM") - .build()) - .put( - "weekday", - newMapStringToObjectBuilder() - .put("long", "EEEE") - .put("short", "E") - .put("narrow", "EEEEE") - .build()) - .put( - "day", - newMapStringToObjectBuilder() - .put("numeric", "d") - .put("2-digit", "dd") - .build()) - .put("hour", newMapStringToObjectBuilder().put("numeric", "j").build()) - .put( - "minute", - newMapStringToObjectBuilder().put("numeric", "m").build()) - .put( - "second", - newMapStringToObjectBuilder().put("numeric", "s").build()) - .put( - "fractionalSecondDigits", - newMapStringToObjectBuilder() - .put(1, "S") - .put(2, "SS") - .put(3, "SSS") - .build()) - .put( - "timeZoneName", - newMapStringToObjectBuilder() - .put("short", "z") - .put("long", "zzzz") - .put("shortOffset", "O") - .put("longOffset", "OOOO") - .put("shortGeneric", "v") - .put("longGeneric", "vvvv") - .build()) - .build(); - - private static String fieldStyleCombinationToSkeleton(Map styleCombination) { - List skeletonArray = new ArrayList<>(); - - for (Object dtField : styleCombination.keySet()) { - if (dtField.equals("dateLength") || dtField.equals("timeLength")) { - continue; - } - if (FIELD_STYLE_TO_SKELETON.containsKey(dtField)) { - String styleValue = (String) styleCombination.get(dtField); - Map styleToSkeleton = FIELD_STYLE_TO_SKELETON.get(dtField); - if (styleToSkeleton.containsKey(styleValue)) { - skeletonArray.add(styleValue); - } - } - } - - return String.join("", skeletonArray); - } private static Set getLocaleNumberingSystems(CLDRFile localeFile) { Set result = new HashSet<>(); @@ -566,182 +372,13 @@ private static String getExpectedStringForTestCase( } - /** - * Calls into getExpectedStringForTestCase() but manages the higher level logic that - * dictates that when we have both a date length and time length, we generate the dateTime - * for all glue pattern types available. When there is only a date length _or_ time length, - * then we only produce 1 formatted string - */ - private static Collection> getTestCaseSubListFromDateTimeLengths( - ImmutableMap.Builder optionsBuilder, - ICUServiceBuilder icuServiceBuilder, - CLDRFile localeCldrFile, - String calendar, - TimeZone icuTimeZone, - ZonedDateTime zdt, - String timeLength, - String dateLength - ) { - List> result = new LinkedList<>(); - - if (dateLength != null && timeLength != null) { - ImmutableList.Builder resultBuilder = ImmutableList.builder(); - for (String dateTimeGluePatternFormatType : Arrays.stream(DateTimeFormatType.values()) - .map(DateTimeFormatType::getLabel).collect(Collectors.toList())) { - String formattedDateTime = - getExpectedStringForTestCase( - icuServiceBuilder, - localeCldrFile, - calendar, - icuTimeZone, - zdt, - timeLength, - dateLength, - dateTimeGluePatternFormatType); - // Reuse and update the optionsBuilder to insert the expected value according to - // the result of the CLDR formatter - // "input" = the ISO 18601 UTC time zone formatted string of the zoned date time - optionsBuilder.put("input", zdt.toString()); - optionsBuilder.put("dateTimeFormatType", dateTimeGluePatternFormatType); - optionsBuilder.put("expected", formattedDateTime); - resultBuilder.add(optionsBuilder.buildKeepingLast()); - } - return resultBuilder.build(); - } else { - String formattedDateTime = - getExpectedStringForTestCase( - icuServiceBuilder, - localeCldrFile, - calendar, - icuTimeZone, - zdt, - timeLength, - dateLength, - null); // dateTime glue pattern is unneeded - // Reuse and update the optionsBuilder to insert the expected value according to - // the result of the CLDR formatter - // "input" = the ISO 18601 UTC time zone formatted string of the zoned date time - optionsBuilder.put("input", zdt.toString()); - optionsBuilder.put("expected", formattedDateTime); - return ImmutableList.of(optionsBuilder.buildKeepingLast()); - } - - } + /* TODO: Expand the kernel over all locale-preferred calendars: - private static Collection> generateAllTestCases() { - - List> result = new LinkedList<>(); - - // locale iteration - - for (String localeStr : LOCALES) { - ULocale locale = - new ULocale(localeStr); // constructor that uses underscores for locale id - CLDRFile localeCldrFile = getCLDRFile(localeStr).orElse(null); - - if (localeCldrFile == null) { - continue; - } - - ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); - icuServiceBuilder.clearCache(); - icuServiceBuilder.setCldrFile(localeCldrFile); - - // calendar iteration - - ULocale maximizedLoc = ULocale.addLikelySubtags(locale); - String region = maximizedLoc.getCountry(); List localePreferredCalendars = SUPPLEMENTAL_DATA_INFO.getCalendars(region); - if (localePreferredCalendars == null) { localePreferredCalendars = SUPPLEMENTAL_DATA_INFO.getCalendars("001"); } - - for (String calendar : CALENDARS) { - if (!localePreferredCalendars.contains(calendar)) { - continue; - } - - // field style combinations iterations - - for (Map fieldStyleCombo : FIELD_STYLE_COMBINATIONS) { - // Chinese calendar doesn't have era. - if (fieldStyleCombo.containsKey("era") && calendar.equals("chinese")) { - continue; - } - - if (!fieldStyleCombo.containsKey("dateLength") - && !fieldStyleCombo.containsKey("timeLength")) { - continue; - } - - // time zone iteration - - for (String timeZone : TIME_ZONES) { - - String skeleton = fieldStyleCombinationToSkeleton(fieldStyleCombo); - - // construct the final set of formatter options - - ImmutableMap.Builder optionsBuilder = - ImmutableMap.builder().putAll(fieldStyleCombo); - if (!calendar.isEmpty()) { - optionsBuilder.put("calendar", calendar); - } - optionsBuilder.put("locale", locale.toLanguageTag()); - ImmutableMap options = optionsBuilder.build(); - - TimeZone icuTimeZone = TimeZone.getTimeZone(timeZone); - - String dateLength = getDateLength(options); - String timeLength = getTimeLength(options); - - // iterate over all dates and format the date time - - ZoneId zoneId = ZoneId.of(timeZone); - - for (ZonedDateTime zdt : JAVA_TIME_ZONED_DATE_TIMES) { - ZonedDateTime zdtNewTz = zdt.withZoneSameInstant(zoneId); - - Collection> testCases = - getTestCaseSubListFromDateTimeLengths( - optionsBuilder, - icuServiceBuilder, - localeCldrFile, - calendar, - icuTimeZone, - zdtNewTz, - timeLength, - dateLength); - - result.addAll(testCases); - } - - for (Map temporalDateInfo : TEMPORAL_DATES) { - ZonedDateTime zdt = - getZonedDateTimeFromTemporalDateInput(temporalDateInfo); - ZonedDateTime zdtNewTz = zdt.withZoneSameInstant(zoneId); - - Collection> testCases = - getTestCaseSubListFromDateTimeLengths( - optionsBuilder, - icuServiceBuilder, - localeCldrFile, - calendar, - icuTimeZone, - zdtNewTz, - timeLength, - dateLength); - - result.addAll(testCases); - } - } - } - } - } - - return result; - } + */ enum DateStyle { @@ -923,6 +560,11 @@ private static ImmutableSet getFieldStyleComboInputs() { FieldStyleComboInput elem; + // TODO: Add to the kernel: + // - fractional second digits + // - column alignment + // - time precision + // 1 (Row 2) elem = new FieldStyleComboInput(); elem.fieldStyleCombo.timeStyle = TimeStyle.SHORT; @@ -1306,7 +948,7 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe } } - // TODO: Resolve the yearStyle as described in the spec + // FIXME: Resolve the yearStyle as described in the spec return sb.toString(); } From 96a5de1a89207ff3821ea7b05f5d859658678025 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Thu, 23 Jan 2025 12:31:20 -0800 Subject: [PATCH 13/15] CLDR-18128 Apply year style according to spec, which includes era in some cases --- common/testData/datetime/datetime.json | 36 +++++++------- .../cldr/tool/GenerateDateTimeTestData.java | 44 +++++++++++++++-- .../tool/GenerateDateTimeTestDataTest.java | 49 +++++++++++++++++++ 3 files changed, 106 insertions(+), 23 deletions(-) diff --git a/common/testData/datetime/datetime.json b/common/testData/datetime/datetime.json index 50bae9deabc..f1bf09e565f 100644 --- a/common/testData/datetime/datetime.json +++ b/common/testData/datetime/datetime.json @@ -228,7 +228,7 @@ "calendar": "gregorian", "locale": "en", "input": "2000-01-01T00:00Z[Etc/GMT]", - "expected": "Sat, 1/1/00" + "expected": "Sat, 1 1, 2000 AD" }, { "semanticSkeleton": "YMDE", @@ -237,7 +237,7 @@ "calendar": "gregorian", "locale": "en", "input": "2024-07-01T08:50:07Z[Etc/GMT]", - "expected": "Mon, 7/1/24" + "expected": "Mon, 7 1, 2024 AD" }, { "semanticSkeleton": "YMDE", @@ -246,7 +246,7 @@ "calendar": "gregorian", "locale": "en", "input": "2014-07-15T12:00Z[Etc/GMT]", - "expected": "Tue, 7/15/14" + "expected": "Tue, 7 15, 2014 AD" }, { "semanticSkeleton": "YMDE", @@ -255,7 +255,7 @@ "calendar": "gregorian", "locale": "en", "input": "2000-01-01T00:00Z[Etc/GMT]", - "expected": "Sat, Jan 1, 2000" + "expected": "Sat, Jan 1, 2000 AD" }, { "semanticSkeleton": "YMDE", @@ -264,7 +264,7 @@ "calendar": "gregorian", "locale": "en", "input": "2024-07-01T08:50:07Z[Etc/GMT]", - "expected": "Mon, Jul 1, 2024" + "expected": "Mon, Jul 1, 2024 AD" }, { "semanticSkeleton": "YMDE", @@ -273,7 +273,7 @@ "calendar": "gregorian", "locale": "en", "input": "2014-07-15T12:00Z[Etc/GMT]", - "expected": "Tue, Jul 15, 2014" + "expected": "Tue, Jul 15, 2014 AD" }, { "semanticSkeleton": "YMDE", @@ -282,7 +282,7 @@ "calendar": "gregorian", "locale": "en", "input": "2000-01-01T00:00Z[Etc/GMT]", - "expected": "Saturday, January 1, 2000" + "expected": "Saturday, January 1, 2000 AD" }, { "semanticSkeleton": "YMDE", @@ -291,7 +291,7 @@ "calendar": "gregorian", "locale": "en", "input": "2024-07-01T08:50:07Z[Etc/GMT]", - "expected": "Monday, July 1, 2024" + "expected": "Monday, July 1, 2024 AD" }, { "semanticSkeleton": "YMDE", @@ -300,7 +300,7 @@ "calendar": "gregorian", "locale": "en", "input": "2014-07-15T12:00Z[Etc/GMT]", - "expected": "Tuesday, July 15, 2014" + "expected": "Tuesday, July 15, 2014 AD" }, { "semanticSkeleton": "Z", @@ -1570,7 +1570,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2000-01-01T00:00Z[Etc/GMT]", - "expected": "ส. 1/1/43" + "expected": "ส. 1 1 พ.ศ. 2543" }, { "semanticSkeleton": "YMDE", @@ -1579,7 +1579,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2024-07-01T08:50:07Z[Etc/GMT]", - "expected": "จ. 1/7/67" + "expected": "จ. 1 7 พ.ศ. 2567" }, { "semanticSkeleton": "YMDE", @@ -1588,7 +1588,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2014-07-15T12:00Z[Etc/GMT]", - "expected": "อ. 15/7/57" + "expected": "อ. 15 7 พ.ศ. 2557" }, { "semanticSkeleton": "YMDE", @@ -1597,7 +1597,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2000-01-01T00:00Z[Etc/GMT]", - "expected": "ส. 1 ม.ค. 2543" + "expected": "ส. 1 ม.ค. พ.ศ. 2543" }, { "semanticSkeleton": "YMDE", @@ -1606,7 +1606,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2024-07-01T08:50:07Z[Etc/GMT]", - "expected": "จ. 1 ก.ค. 2567" + "expected": "จ. 1 ก.ค. พ.ศ. 2567" }, { "semanticSkeleton": "YMDE", @@ -1615,7 +1615,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2014-07-15T12:00Z[Etc/GMT]", - "expected": "อ. 15 ก.ค. 2557" + "expected": "อ. 15 ก.ค. พ.ศ. 2557" }, { "semanticSkeleton": "YMDE", @@ -1624,7 +1624,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2000-01-01T00:00Z[Etc/GMT]", - "expected": "วันเสาร์ที่ 1 มกราคม 2543" + "expected": "วันเสาร์ที่ 1 มกราคม พ.ศ. 2543" }, { "semanticSkeleton": "YMDE", @@ -1633,7 +1633,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2024-07-01T08:50:07Z[Etc/GMT]", - "expected": "วันจันทร์ที่ 1 กรกฎาคม 2567" + "expected": "วันจันทร์ที่ 1 กรกฎาคม พ.ศ. 2567" }, { "semanticSkeleton": "YMDE", @@ -1642,7 +1642,7 @@ "calendar": "buddhist", "locale": "th-TH", "input": "2014-07-15T12:00Z[Etc/GMT]", - "expected": "วันอังคารที่ 15 กรกฎาคม 2557" + "expected": "วันอังคารที่ 15 กรกฎาคม พ.ศ. 2557" }, { "semanticSkeleton": "Z", diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index d4648078221..6e626958baa 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -813,7 +813,9 @@ static class TestCase { String expected; } - private static final Pattern SKELETON_YEAR_FIELD_PATTERN = Pattern.compile("G*y+"); + private static final Pattern SKELETON_YEAR_FIELD_PATTERN = Pattern.compile("y+"); + + private static final Pattern SKELETON_ERA_FIELD_PATTERN = Pattern.compile("G+"); private static final Pattern SKELETON_MONTH_FIELD_PATTERN = Pattern.compile("M+"); @@ -841,9 +843,39 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe // Year if (skeleton.hasYear()) { - String yieldField = getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, + final String year = getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, SKELETON_YEAR_FIELD_PATTERN); - sb.append(yieldField); + + final String era = getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, + SKELETON_ERA_FIELD_PATTERN); + + // Compute the final form of the year field according to the year style + String updatedYear = year; + String updatedEra = era; + YearStyle yearStyle = fieldStyleCombo.yearStyle; + if (yearStyle != null) { + switch (yearStyle) { + case AUTO: + updatedYear = year; + updatedEra = era; + break; + case FULL: + updatedYear = year.replace("yy", "y"); + updatedEra = era; + break; + case WITH_ERA: + updatedYear = year.replace("yy", "y"); + if (era.isEmpty()) { + updatedEra = "G"; + } else { + updatedEra = era; + } + break; + } + } + String updatedYearEra = updatedEra + updatedYear; + + sb.append(updatedYearEra); } // Month @@ -874,6 +906,7 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe SKELETON_DAY_FIELD_PATTERN)); } + // Weekday if (skeleton.hasWeekday()) { switch (fieldStyleCombo.semanticSkeletonLength) { case LONG: @@ -894,6 +927,7 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe } } + // Time if (skeleton.hasTime()) { if (fieldStyleCombo.hourCycle == null) { // TODO: use "C" instead of "j" by fixing NullPointerException in ICU4J @@ -913,6 +947,8 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe sb.append("m"); sb.append("s"); } + + // Time Zone if (skeleton.hasZone()) { switch (fieldStyleCombo.zoneStyle) { case GENERIC: @@ -948,8 +984,6 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe } } - // FIXME: Resolve the yearStyle as described in the spec - return sb.toString(); } diff --git a/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java index 8adc672759c..831bbb75aeb 100644 --- a/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java +++ b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java @@ -4,10 +4,12 @@ import static org.junit.jupiter.api.Assertions.fail; import com.ibm.icu.util.ULocale; +import java.time.Year; import org.junit.jupiter.api.Test; import org.unicode.cldr.tool.GenerateDateTimeTestData.FieldStyleCombo; import org.unicode.cldr.tool.GenerateDateTimeTestData.SemanticSkeleton; import org.unicode.cldr.tool.GenerateDateTimeTestData.SemanticSkeletonLength; +import org.unicode.cldr.tool.GenerateDateTimeTestData.YearStyle; import org.unicode.cldr.util.CLDRFile; import org.unicode.cldr.util.ICUServiceBuilder; @@ -51,4 +53,51 @@ public void testComputeSkeletonFromSemanticSkeleton() { } } + @Test + public void testComputeSkeletonFromSemanticSkeleton_applyYearStyle() { + + Object[][] casesData = { + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.WITH_ERA, "GyMdEEE"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.FULL, "yMdEEE"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.AUTO, "yyMdEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.WITH_ERA, "GGGGGyMdEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.FULL, "GGGGGyMdEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.AUTO, "GGGGGyMdEEE"}, + }; + + for (Object[] caseDatum : casesData) { + String localeTag = (String) caseDatum[0]; + String calendarStr = (String) caseDatum[1]; + SemanticSkeleton semanticSkeleton = (SemanticSkeleton) caseDatum[2]; + SemanticSkeletonLength semanticSkeletonLength = (SemanticSkeletonLength) caseDatum[3]; + YearStyle yearStyle = (YearStyle) caseDatum[4]; + String expected = (String) caseDatum[5]; + + ULocale locale = ULocale.forLanguageTag(localeTag); + String localeStr = locale.getName(); + CLDRFile localeCldrFile = GenerateDateTimeTestData.getCLDRFile(localeStr).orElse(null); + assert localeCldrFile != null; + ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); + icuServiceBuilder.clearCache(); + icuServiceBuilder.setCldrFile(localeCldrFile); + + FieldStyleCombo fieldStyleCombo = new FieldStyleCombo(); + fieldStyleCombo.semanticSkeleton = semanticSkeleton; + fieldStyleCombo.semanticSkeletonLength = semanticSkeletonLength; + fieldStyleCombo.yearStyle =yearStyle; + + String actual = GenerateDateTimeTestData.computeSkeletonFromSemanticSkeleton( + icuServiceBuilder, localeCldrFile, fieldStyleCombo, calendarStr); + + assertEquals( + expected, + actual, + "skeleton string for locale "+ localeStr + + ", calendar " + calendarStr + + ", semantic skeleton " + semanticSkeleton.toString() + + ", skeleton length " + semanticSkeletonLength.getLabel() + + ", year style length " + yearStyle.getLabel() + ); + } + } } From 30b8c6cb03a3ed03bf8c7533d296bd9588704524 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Thu, 23 Jan 2025 13:58:59 -0800 Subject: [PATCH 14/15] CLDR-18128 Add more docs --- .../cldr/tool/GenerateDateTimeTestData.java | 24 +++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index 6e626958baa..79e30f41fec 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -431,6 +431,10 @@ String getLabel() { } } + /** + * Semantic Skeletons and related DateTime fields, etc. are defined in LDML / UTS 35. + * Ex: See: https://www.unicode.org/reports/tr35/tr35-dates.html#Generating_Patterns_for_Semantic_Skeletons + */ enum SemanticSkeleton { YMDE("YMDE"), MDTZ("MDTZ"), @@ -555,6 +559,10 @@ static class FieldStyleComboInput { boolean shouldMultiplyByDateTime; } + /** + * @return The manually created collection of field input value combinatinos that characterize + * the test cases of the kernel. + */ private static ImmutableSet getFieldStyleComboInputs() { ImmutableSet.Builder builder = ImmutableSet.builder(); @@ -800,6 +808,12 @@ private static ImmutableSet getFieldStyleComboInputs() { return builder.build(); } + /** + * A struct used to represent and store the manually created test case inputs that constitute + * the "kernel" of test cases. The kernel of test cases exist to create a minimal set of + * combinations / variations of values for the date time fields that exercise a fairly thorough + * coverage of functionality & corner cases for date time formatting. + */ static class TestCaseInput { FieldStyleCombo fieldStyleCombo; LocalDateTime dateTime; @@ -821,6 +835,16 @@ static class TestCase { private static final Pattern SKELETON_DAY_FIELD_PATTERN = Pattern.compile("d+"); + /** + * Get the locale default date time skeleton for the given semantic skeleton length, and then + * return the skeleton substring that represents a particular date time field according to + * {@code fieldPattern}. + * @param localeCldrFile + * @param fieldStyleCombo + * @param calendarStr + * @param fieldPattern + * @return + */ private static String getFieldFromDateTimeSkeleton(CLDRFile localeCldrFile, FieldStyleCombo fieldStyleCombo, String calendarStr, Pattern fieldPattern) { String skeletonLength = fieldStyleCombo.semanticSkeletonLength.getLabel(); String dateTimeSkeleton = localeCldrFile.getDateSkeleton(calendarStr, skeletonLength); From 853ad38d061b9eedc940388f4f3ae930821edfd5 Mon Sep 17 00:00:00 2001 From: Elango Cheran Date: Fri, 24 Jan 2025 12:41:57 -0800 Subject: [PATCH 15/15] CLDR-18128 Apply source code formatter changes --- .../cldr/tool/GenerateDateTimeTestData.java | 286 ++++++++++-------- .../java/org/unicode/cldr/util/CLDRFile.java | 9 +- .../tool/GenerateDateTimeTestDataTest.java | 226 ++++++++------ 3 files changed, 306 insertions(+), 215 deletions(-) diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java index 79e30f41fec..74d28aff3dc 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/tool/GenerateDateTimeTestData.java @@ -230,7 +230,6 @@ private static final ImmutableMap.Builder newMapStringToObjectBu .put("nanosecond", 0) .build()); - private static Set getLocaleNumberingSystems(CLDRFile localeFile) { Set result = new HashSet<>(); for (NumberingSystem system : NumberingSystem.values()) { @@ -314,15 +313,14 @@ private static String getTimeLength(Map optionsMap) { } private static String getExpectedStringForTestCase( - ICUServiceBuilder icuServiceBuilder, - CLDRFile localeCldrFile, - String calendar, - TimeZone icuTimeZone, - ZonedDateTime zdt, - String timeLength, - String dateLength, - String dateTimeGluePatternFormatType - ) { + ICUServiceBuilder icuServiceBuilder, + CLDRFile localeCldrFile, + String calendar, + TimeZone icuTimeZone, + ZonedDateTime zdt, + String timeLength, + String dateLength, + String dateTimeGluePatternFormatType) { String formattedDateTime; SimpleDateFormat timeFormatter = null; SimpleDateFormat dateFormatter = null; @@ -330,9 +328,7 @@ private static String getExpectedStringForTestCase( // properly initialize the time formatter if (timeLength != null) { - timeFormatter = - localeCldrFile.getTimeFormat( - calendar, timeLength, icuServiceBuilder); + timeFormatter = localeCldrFile.getTimeFormat(calendar, timeLength, icuServiceBuilder); assert timeFormatter != null; timeFormatter.setTimeZone(icuTimeZone); } @@ -340,9 +336,7 @@ private static String getExpectedStringForTestCase( // properly initialize the date formatter if (dateLength != null) { - dateFormatter = - localeCldrFile.getDateFormat( - calendar, dateLength, icuServiceBuilder); + dateFormatter = localeCldrFile.getDateFormat(calendar, dateLength, icuServiceBuilder); assert dateFormatter != null; dateFormatter.setTimeZone(icuTimeZone); } @@ -354,32 +348,30 @@ private static String getExpectedStringForTestCase( } else if (timeLength == null) { formattedDateTime = dateFormatter.format(zdt); } else { - assert(dateTimeGluePatternFormatType != null); + assert (dateTimeGluePatternFormatType != null); String formattedDate = dateFormatter.format(zdt); String formattedTime = timeFormatter.format(zdt); formattedDateTime = - localeCldrFile.glueDateTimeFormat( - formattedDate, - formattedTime, - calendar, - dateLength, - dateTimeGluePatternFormatType, - icuServiceBuilder); + localeCldrFile.glueDateTimeFormat( + formattedDate, + formattedTime, + calendar, + dateLength, + dateTimeGluePatternFormatType, + icuServiceBuilder); } return formattedDateTime; } - /* TODO: Expand the kernel over all locale-preferred calendars: - List localePreferredCalendars = SUPPLEMENTAL_DATA_INFO.getCalendars(region); - if (localePreferredCalendars == null) { - localePreferredCalendars = SUPPLEMENTAL_DATA_INFO.getCalendars("001"); - } - */ - + List localePreferredCalendars = SUPPLEMENTAL_DATA_INFO.getCalendars(region); + if (localePreferredCalendars == null) { + localePreferredCalendars = SUPPLEMENTAL_DATA_INFO.getCalendars("001"); + } + */ enum DateStyle { SHORT("short"), @@ -432,8 +424,8 @@ String getLabel() { } /** - * Semantic Skeletons and related DateTime fields, etc. are defined in LDML / UTS 35. - * Ex: See: https://www.unicode.org/reports/tr35/tr35-dates.html#Generating_Patterns_for_Semantic_Skeletons + * Semantic Skeletons and related DateTime fields, etc. are defined in LDML / UTS 35. Ex: See: + * https://www.unicode.org/reports/tr35/tr35-dates.html#Generating_Patterns_for_Semantic_Skeletons */ enum SemanticSkeleton { YMDE("YMDE"), @@ -457,7 +449,9 @@ public boolean hasYear() { } public boolean hasMonth() { - return (this == SemanticSkeleton.YMDE || this == SemanticSkeleton.MDTZ || this == SemanticSkeleton.M); + return (this == SemanticSkeleton.YMDE + || this == SemanticSkeleton.MDTZ + || this == SemanticSkeleton.M); } public boolean hasDay() { @@ -477,7 +471,9 @@ public boolean hasZone() { } public boolean isStandalone() { - return (this == SemanticSkeleton.M || this == SemanticSkeleton.T || this == SemanticSkeleton.Z); + return (this == SemanticSkeleton.M + || this == SemanticSkeleton.T + || this == SemanticSkeleton.Z); } } @@ -531,11 +527,10 @@ String getLabel() { // private class SemanticSkeletonFieldSet() - /** * A struct to contain combinations of datetime fields & styles, mainly to allow an enumeration - * of combinations of values for these fields that yields a similarly thorough coverage of - * the test space without having to compute the full Cartesian product of all values of all + * of combinations of values for these fields that yields a similarly thorough coverage of the + * test space without having to compute the full Cartesian product of all values of all * dimensions possible. */ static class FieldStyleCombo { @@ -561,7 +556,7 @@ static class FieldStyleComboInput { /** * @return The manually created collection of field input value combinatinos that characterize - * the test cases of the kernel. + * the test cases of the kernel. */ private static ImmutableSet getFieldStyleComboInputs() { ImmutableSet.Builder builder = ImmutableSet.builder(); @@ -839,19 +834,25 @@ static class TestCase { * Get the locale default date time skeleton for the given semantic skeleton length, and then * return the skeleton substring that represents a particular date time field according to * {@code fieldPattern}. + * * @param localeCldrFile * @param fieldStyleCombo * @param calendarStr * @param fieldPattern * @return */ - private static String getFieldFromDateTimeSkeleton(CLDRFile localeCldrFile, FieldStyleCombo fieldStyleCombo, String calendarStr, Pattern fieldPattern) { + private static String getFieldFromDateTimeSkeleton( + CLDRFile localeCldrFile, + FieldStyleCombo fieldStyleCombo, + String calendarStr, + Pattern fieldPattern) { String skeletonLength = fieldStyleCombo.semanticSkeletonLength.getLabel(); String dateTimeSkeleton = localeCldrFile.getDateSkeleton(calendarStr, skeletonLength); Matcher fieldMatchResult = fieldPattern.matcher(dateTimeSkeleton); if (fieldMatchResult.find()) { - // take the first result, which assumes that there is only one unique place where a match can occur + // take the first result, which assumes that there is only one unique place where a + // match can occur // otherwise, we would need to get the group count and iterate over each match group String field = fieldMatchResult.group(); return field; @@ -860,18 +861,29 @@ private static String getFieldFromDateTimeSkeleton(CLDRFile localeCldrFile, Fiel } } - public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuServiceBuilder, - CLDRFile localeCldrFile, FieldStyleCombo fieldStyleCombo, String calendarStr) { + public static String computeSkeletonFromSemanticSkeleton( + ICUServiceBuilder icuServiceBuilder, + CLDRFile localeCldrFile, + FieldStyleCombo fieldStyleCombo, + String calendarStr) { SemanticSkeleton skeleton = fieldStyleCombo.semanticSkeleton; StringBuilder sb = new StringBuilder(); // Year if (skeleton.hasYear()) { - final String year = getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, - SKELETON_YEAR_FIELD_PATTERN); - - final String era = getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, - SKELETON_ERA_FIELD_PATTERN); + final String year = + getFieldFromDateTimeSkeleton( + localeCldrFile, + fieldStyleCombo, + calendarStr, + SKELETON_YEAR_FIELD_PATTERN); + + final String era = + getFieldFromDateTimeSkeleton( + localeCldrFile, + fieldStyleCombo, + calendarStr, + SKELETON_ERA_FIELD_PATTERN); // Compute the final form of the year field according to the year style String updatedYear = year; @@ -919,15 +931,23 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe break; } } else { - sb.append(getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, - SKELETON_MONTH_FIELD_PATTERN)); + sb.append( + getFieldFromDateTimeSkeleton( + localeCldrFile, + fieldStyleCombo, + calendarStr, + SKELETON_MONTH_FIELD_PATTERN)); } } // Day if (skeleton.hasDay()) { - sb.append(getFieldFromDateTimeSkeleton(localeCldrFile, fieldStyleCombo, calendarStr, - SKELETON_DAY_FIELD_PATTERN)); + sb.append( + getFieldFromDateTimeSkeleton( + localeCldrFile, + fieldStyleCombo, + calendarStr, + SKELETON_DAY_FIELD_PATTERN)); } // Weekday @@ -977,7 +997,8 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe switch (fieldStyleCombo.zoneStyle) { case GENERIC: if (skeleton.isStandalone()) { - if (fieldStyleCombo.semanticSkeletonLength == SemanticSkeletonLength.SHORT) { + if (fieldStyleCombo.semanticSkeletonLength + == SemanticSkeletonLength.SHORT) { sb.append("v"); } else { sb.append("vvvv"); @@ -988,7 +1009,8 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe break; case SPECIFIC: if (skeleton.isStandalone()) { - if (fieldStyleCombo.semanticSkeletonLength == SemanticSkeletonLength.SHORT) { + if (fieldStyleCombo.semanticSkeletonLength + == SemanticSkeletonLength.SHORT) { sb.append("z"); } else { sb.append("zzzz"); @@ -1011,27 +1033,38 @@ public static String computeSkeletonFromSemanticSkeleton(ICUServiceBuilder icuSe return sb.toString(); } - private static TestCase convertTestCaseInputToTestCase(ICUServiceBuilder icuServiceBuilder, - CLDRFile localeCldrFile, TestCaseInput testCaseInput) { + private static TestCase convertTestCaseInputToTestCase( + ICUServiceBuilder icuServiceBuilder, + CLDRFile localeCldrFile, + TestCaseInput testCaseInput) { String calendarStr = testCaseInput.calendar.getType(); - String dateLength = testCaseInput.fieldStyleCombo.dateStyle == null ? null : testCaseInput.fieldStyleCombo.dateStyle.getLabel(); - String timeLength = testCaseInput.fieldStyleCombo.timeStyle == null ? null : testCaseInput.fieldStyleCombo.timeStyle.getLabel(); + String dateLength = + testCaseInput.fieldStyleCombo.dateStyle == null + ? null + : testCaseInput.fieldStyleCombo.dateStyle.getLabel(); + String timeLength = + testCaseInput.fieldStyleCombo.timeStyle == null + ? null + : testCaseInput.fieldStyleCombo.timeStyle.getLabel(); LocalDateTime localDt = testCaseInput.dateTime; TimeZone icuTimeZone = testCaseInput.timeZone; ZoneId zoneId = ZoneId.of(icuTimeZone.getID()); ZonedDateTime zdt = ZonedDateTime.of(localDt, zoneId); - String dateTimeGluePatternFormatType = testCaseInput.fieldStyleCombo.dateTimeFormatType == null ? null : testCaseInput.fieldStyleCombo.dateTimeFormatType.getLabel(); - - String expected = getExpectedStringForTestCase( - icuServiceBuilder, - localeCldrFile, - calendarStr, - icuTimeZone, - zdt, - timeLength, - dateLength, - dateTimeGluePatternFormatType - ); + String dateTimeGluePatternFormatType = + testCaseInput.fieldStyleCombo.dateTimeFormatType == null + ? null + : testCaseInput.fieldStyleCombo.dateTimeFormatType.getLabel(); + + String expected = + getExpectedStringForTestCase( + icuServiceBuilder, + localeCldrFile, + calendarStr, + icuTimeZone, + zdt, + timeLength, + dateLength, + dateTimeGluePatternFormatType); TestCase result = new TestCase(); result.testCaseInput = testCaseInput; @@ -1041,17 +1074,20 @@ private static TestCase convertTestCaseInputToTestCase(ICUServiceBuilder icuServ } private static TestCase computeTestCase( - ICUServiceBuilder icuServiceBuilder, - CLDRFile localeCldrFile, - TestCaseInput testCaseInput - ) { + ICUServiceBuilder icuServiceBuilder, + CLDRFile localeCldrFile, + TestCaseInput testCaseInput) { if (testCaseInput.fieldStyleCombo.semanticSkeleton == null) { return convertTestCaseInputToTestCase(icuServiceBuilder, localeCldrFile, testCaseInput); } else { String calendarStr = testCaseInput.calendar.getType(); - String skeleton = computeSkeletonFromSemanticSkeleton(icuServiceBuilder, localeCldrFile, - testCaseInput.fieldStyleCombo, calendarStr); + String skeleton = + computeSkeletonFromSemanticSkeleton( + icuServiceBuilder, + localeCldrFile, + testCaseInput.fieldStyleCombo, + calendarStr); // TODO: fix CLDR DateTimeFormats constructor to use CLDRFile to get the dateTimeFormat // glue pattern rather than use ICU to get it DateTimeFormats formats = new DateTimeFormats().set(localeCldrFile, calendarStr); @@ -1075,28 +1111,26 @@ public static ImmutableSet getKernelTestCases() { // more manually defined inputs - List> LOCALE_CALENDAR_PAIRS = List.of( - Pair.of(ULocale.ENGLISH, new GregorianCalendar()), - Pair.of(ULocale.forLanguageTag("ar-SA"), new IslamicCalendar()), - Pair.of(ULocale.forLanguageTag("th-TH"), new BuddhistCalendar()), - Pair.of(ULocale.forLanguageTag("ja-JP"), new JapaneseCalendar()) - ); + List> LOCALE_CALENDAR_PAIRS = + List.of( + Pair.of(ULocale.ENGLISH, new GregorianCalendar()), + Pair.of(ULocale.forLanguageTag("ar-SA"), new IslamicCalendar()), + Pair.of(ULocale.forLanguageTag("th-TH"), new BuddhistCalendar()), + Pair.of(ULocale.forLanguageTag("ja-JP"), new JapaneseCalendar())); - List DATE_TIMES = List.of( - LocalDateTime.of(2000, 1, 1, 0, 0, 0), - LocalDateTime.of(2024, 7, 1, 8, 50, 7), - // Ramadan in Summer at 12:00 noon in the year 2014 - LocalDateTime.of(2014, 7, 15, 12, 0, 0) - ); + List DATE_TIMES = + List.of( + LocalDateTime.of(2000, 1, 1, 0, 0, 0), + LocalDateTime.of(2024, 7, 1, 8, 50, 7), + // Ramadan in Summer at 12:00 noon in the year 2014 + LocalDateTime.of(2014, 7, 15, 12, 0, 0)); List DATE_TIME_ONE_ONLY = List.of(DATE_TIMES.get(0)); // TODO: add a 3rd time zone dynamically, which is the default time zone for the current // locale in question when iterating over all locales - List STATIC_TIME_ZONES = List.of( - TimeZone.GMT_ZONE, - TimeZone.getTimeZone("Australia/Adelaide") - ); + List STATIC_TIME_ZONES = + List.of(TimeZone.GMT_ZONE, TimeZone.getTimeZone("Australia/Adelaide")); List STATIC_TIME_ZONE_ONE_ONLY = List.of(STATIC_TIME_ZONES.get(0)); @@ -1106,7 +1140,7 @@ public static ImmutableSet getKernelTestCases() { // iteration to add to return value - for (Pair localeCalendarPair : LOCALE_CALENDAR_PAIRS) { + for (Pair localeCalendarPair : LOCALE_CALENDAR_PAIRS) { ULocale locale = localeCalendarPair.first; Calendar calendar = localeCalendarPair.second; @@ -1137,7 +1171,8 @@ public static ImmutableSet getKernelTestCases() { List timeZoneIterationColl = STATIC_TIME_ZONE_ONE_ONLY; if (input.shouldMultiplyByTimeZone) { timeZoneIterationColl = STATIC_TIME_ZONES; - // TODO: add a TimeZone from the region of the locale to the list of time zones to iterate over + // TODO: add a TimeZone from the region of the locale to the list of time zones + // to iterate over } for (LocalDateTime localDateTime : dateTimeIterationColl) { @@ -1149,7 +1184,8 @@ public static ImmutableSet getKernelTestCases() { testCaseInput.locale = locale; testCaseInput.calendar = calendar; - TestCase testCase = computeTestCase(icuServiceBuilder, localeCldrFile, testCaseInput); + TestCase testCase = + computeTestCase(icuServiceBuilder, localeCldrFile, testCaseInput); builder.add(testCase); } @@ -1162,9 +1198,8 @@ public static ImmutableSet getKernelTestCases() { /** * This struct class exists specifically to convert from the structured {@code TestCase} struct - * class to one that is appropriate for de-/serializing (formatting & parsing), ex: - * to give it a flat structure that makes it easier for downstream consumers of the formatted - * output. + * class to one that is appropriate for de-/serializing (formatting & parsing), ex: to give it a + * flat structure that makes it easier for downstream consumers of the formatted output. */ static class TestCaseSerde { String dateLength = null; @@ -1185,37 +1220,37 @@ private static TestCaseSerde convertTestCaseToSerialize(TestCase testCase) { TestCaseSerde result = new TestCaseSerde(); result.dateLength = - Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.dateStyle) - .map(DateStyle::getLabel) - .orElse(null); + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.dateStyle) + .map(DateStyle::getLabel) + .orElse(null); result.timeLength = - Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.timeStyle) - .map(TimeStyle::getLabel) - .orElse(null); + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.timeStyle) + .map(TimeStyle::getLabel) + .orElse(null); result.semanticSkeleton = - Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.semanticSkeleton) - .map(SemanticSkeleton::getLabel) - .orElse(null); + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.semanticSkeleton) + .map(SemanticSkeleton::getLabel) + .orElse(null); result.semanticSkeletonLength = - Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.semanticSkeletonLength) - .map(SemanticSkeletonLength::getLabel) - .orElse(null); + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.semanticSkeletonLength) + .map(SemanticSkeletonLength::getLabel) + .orElse(null); result.dateTimeFormatType = - Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.dateTimeFormatType) - .map(DateTimeFormatType::getLabel) - .orElse(null); + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.dateTimeFormatType) + .map(DateTimeFormatType::getLabel) + .orElse(null); result.hourCycle = - Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.hourCycle) - .map(HourCycle::getLabel) - .orElse(null); + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.hourCycle) + .map(HourCycle::getLabel) + .orElse(null); result.zoneStyle = - Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.zoneStyle) - .map(ZoneStyle::getLabel) - .orElse(null); + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.zoneStyle) + .map(ZoneStyle::getLabel) + .orElse(null); result.yearStyle = - Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.yearStyle) - .map(YearStyle::getLabel) - .orElse(null); + Optional.ofNullable(testCase.testCaseInput.fieldStyleCombo.yearStyle) + .map(YearStyle::getLabel) + .orElse(null); result.calendar = testCase.testCaseInput.calendar.getType(); result.locale = testCase.testCaseInput.locale.toLanguageTag(); @@ -1235,9 +1270,10 @@ public static void main(String[] args) throws IOException { TempPrintWriter.openUTF8Writer( CLDRPaths.TEST_DATA + OUTPUT_SUBDIR, OUTPUT_FILENAME)) { ImmutableSet testCases = getKernelTestCases(); - List testCaseSerdes = testCases.stream() - .map(GenerateDateTimeTestData::convertTestCaseToSerialize) - .collect(Collectors.toList()); + List testCaseSerdes = + testCases.stream() + .map(GenerateDateTimeTestData::convertTestCaseToSerialize) + .collect(Collectors.toList()); pw.println(GSON.toJson(testCaseSerdes)); } } diff --git a/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java b/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java index 06a940cb4c3..ed30a2ffc15 100644 --- a/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java +++ b/tools/cldr-code/src/main/java/org/unicode/cldr/util/CLDRFile.java @@ -1295,7 +1295,7 @@ private String getDateFormatXpath(String calendar, String length) { */ private String getDateSkeletonXpath(String calendar, String length) { String formatPattern = - "//ldml/dates/calendars/calendar[@type=\"%s\"]/dateFormats/dateFormatLength[@type=\"%s\"]/dateFormat[@type=\"standard\"]/datetimeSkeleton"; + "//ldml/dates/calendars/calendar[@type=\"%s\"]/dateFormats/dateFormatLength[@type=\"%s\"]/dateFormat[@type=\"standard\"]/datetimeSkeleton"; return String.format(formatPattern, calendar, length); } @@ -1399,11 +1399,10 @@ public String glueDateTimeFormatWithGluePattern( return MessageFormat.format(gluePatternWithoutQuotes, (Object[]) new String[] {time, date}); } - public String getDateSkeleton( - String calendar, String length) { + public String getDateSkeleton(String calendar, String length) { String dateTimeSkeletonXPath = // Get standard dateTime skeleton for same calendar & length - // as this dateTimePattern - this.getDateSkeletonXpath(calendar, length); + // as this dateTimePattern + this.getDateSkeletonXpath(calendar, length); return this.getWinningValue(dateTimeSkeletonXPath); } diff --git a/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java index 831bbb75aeb..31199a0302e 100644 --- a/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java +++ b/tools/cldr-code/src/test/java/org/unicode/cldr/tool/GenerateDateTimeTestDataTest.java @@ -1,10 +1,8 @@ package org.unicode.cldr.tool; import static org.junit.jupiter.api.Assertions.assertEquals; -import static org.junit.jupiter.api.Assertions.fail; import com.ibm.icu.util.ULocale; -import java.time.Year; import org.junit.jupiter.api.Test; import org.unicode.cldr.tool.GenerateDateTimeTestData.FieldStyleCombo; import org.unicode.cldr.tool.GenerateDateTimeTestData.SemanticSkeleton; @@ -15,89 +13,147 @@ public class GenerateDateTimeTestDataTest { - @Test - public void testComputeSkeletonFromSemanticSkeleton() { - - Object[][] casesData = { - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "yMMMMdEEEE"}, - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "yMMMdEEE"}, - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "yyMdEEE"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "GyMMMMdEEEE"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "GyMMMdEEE"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "GGGGGyMdEEE"}, - }; - - for (Object[] caseDatum : casesData) { - String localeTag = (String) caseDatum[0]; - String calendarStr = (String) caseDatum[1]; - SemanticSkeleton semanticSkeleton = (SemanticSkeleton) caseDatum[2]; - SemanticSkeletonLength semanticSkeletonLength = (SemanticSkeletonLength) caseDatum[3]; - String expected = (String) caseDatum[4]; - - ULocale locale = ULocale.forLanguageTag(localeTag); - String localeStr = locale.getName(); - CLDRFile localeCldrFile = GenerateDateTimeTestData.getCLDRFile(localeStr).orElse(null); - assert localeCldrFile != null; - ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); - icuServiceBuilder.clearCache(); - icuServiceBuilder.setCldrFile(localeCldrFile); - - FieldStyleCombo fieldStyleCombo = new FieldStyleCombo(); - fieldStyleCombo.semanticSkeleton = semanticSkeleton; - fieldStyleCombo.semanticSkeletonLength = semanticSkeletonLength; - - String actual = GenerateDateTimeTestData.computeSkeletonFromSemanticSkeleton( - icuServiceBuilder, localeCldrFile, fieldStyleCombo, calendarStr); - - assertEquals(expected, actual, "skeleton string for locale " + localeStr + ", calendar " + calendarStr + ", semantic skeleton " + semanticSkeleton.toString() + ", skeleton length " +semanticSkeletonLength.getLabel()); + @Test + public void testComputeSkeletonFromSemanticSkeleton() { + + Object[][] casesData = { + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "yMMMMdEEEE"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "yMMMdEEE"}, + {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "yyMdEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.LONG, "GyMMMMdEEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.MEDIUM, "GyMMMdEEE"}, + {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, "GGGGGyMdEEE"}, + }; + + for (Object[] caseDatum : casesData) { + String localeTag = (String) caseDatum[0]; + String calendarStr = (String) caseDatum[1]; + SemanticSkeleton semanticSkeleton = (SemanticSkeleton) caseDatum[2]; + SemanticSkeletonLength semanticSkeletonLength = (SemanticSkeletonLength) caseDatum[3]; + String expected = (String) caseDatum[4]; + + ULocale locale = ULocale.forLanguageTag(localeTag); + String localeStr = locale.getName(); + CLDRFile localeCldrFile = GenerateDateTimeTestData.getCLDRFile(localeStr).orElse(null); + assert localeCldrFile != null; + ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); + icuServiceBuilder.clearCache(); + icuServiceBuilder.setCldrFile(localeCldrFile); + + FieldStyleCombo fieldStyleCombo = new FieldStyleCombo(); + fieldStyleCombo.semanticSkeleton = semanticSkeleton; + fieldStyleCombo.semanticSkeletonLength = semanticSkeletonLength; + + String actual = + GenerateDateTimeTestData.computeSkeletonFromSemanticSkeleton( + icuServiceBuilder, localeCldrFile, fieldStyleCombo, calendarStr); + + assertEquals( + expected, + actual, + "skeleton string for locale " + + localeStr + + ", calendar " + + calendarStr + + ", semantic skeleton " + + semanticSkeleton.toString() + + ", skeleton length " + + semanticSkeletonLength.getLabel()); + } } - } - - @Test - public void testComputeSkeletonFromSemanticSkeleton_applyYearStyle() { - - Object[][] casesData = { - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.WITH_ERA, "GyMdEEE"}, - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.FULL, "yMdEEE"}, - {"en", "gregorian", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.AUTO, "yyMdEEE"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.WITH_ERA, "GGGGGyMdEEE"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.FULL, "GGGGGyMdEEE"}, - {"en", "japanese", SemanticSkeleton.YMDE, SemanticSkeletonLength.SHORT, YearStyle.AUTO, "GGGGGyMdEEE"}, - }; - - for (Object[] caseDatum : casesData) { - String localeTag = (String) caseDatum[0]; - String calendarStr = (String) caseDatum[1]; - SemanticSkeleton semanticSkeleton = (SemanticSkeleton) caseDatum[2]; - SemanticSkeletonLength semanticSkeletonLength = (SemanticSkeletonLength) caseDatum[3]; - YearStyle yearStyle = (YearStyle) caseDatum[4]; - String expected = (String) caseDatum[5]; - - ULocale locale = ULocale.forLanguageTag(localeTag); - String localeStr = locale.getName(); - CLDRFile localeCldrFile = GenerateDateTimeTestData.getCLDRFile(localeStr).orElse(null); - assert localeCldrFile != null; - ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); - icuServiceBuilder.clearCache(); - icuServiceBuilder.setCldrFile(localeCldrFile); - - FieldStyleCombo fieldStyleCombo = new FieldStyleCombo(); - fieldStyleCombo.semanticSkeleton = semanticSkeleton; - fieldStyleCombo.semanticSkeletonLength = semanticSkeletonLength; - fieldStyleCombo.yearStyle =yearStyle; - - String actual = GenerateDateTimeTestData.computeSkeletonFromSemanticSkeleton( - icuServiceBuilder, localeCldrFile, fieldStyleCombo, calendarStr); - - assertEquals( - expected, - actual, - "skeleton string for locale "+ localeStr - + ", calendar " + calendarStr - + ", semantic skeleton " + semanticSkeleton.toString() - + ", skeleton length " + semanticSkeletonLength.getLabel() - + ", year style length " + yearStyle.getLabel() - ); + + @Test + public void testComputeSkeletonFromSemanticSkeleton_applyYearStyle() { + + Object[][] casesData = { + { + "en", + "gregorian", + SemanticSkeleton.YMDE, + SemanticSkeletonLength.SHORT, + YearStyle.WITH_ERA, + "GyMdEEE" + }, + { + "en", + "gregorian", + SemanticSkeleton.YMDE, + SemanticSkeletonLength.SHORT, + YearStyle.FULL, + "yMdEEE" + }, + { + "en", + "gregorian", + SemanticSkeleton.YMDE, + SemanticSkeletonLength.SHORT, + YearStyle.AUTO, + "yyMdEEE" + }, + { + "en", + "japanese", + SemanticSkeleton.YMDE, + SemanticSkeletonLength.SHORT, + YearStyle.WITH_ERA, + "GGGGGyMdEEE" + }, + { + "en", + "japanese", + SemanticSkeleton.YMDE, + SemanticSkeletonLength.SHORT, + YearStyle.FULL, + "GGGGGyMdEEE" + }, + { + "en", + "japanese", + SemanticSkeleton.YMDE, + SemanticSkeletonLength.SHORT, + YearStyle.AUTO, + "GGGGGyMdEEE" + }, + }; + + for (Object[] caseDatum : casesData) { + String localeTag = (String) caseDatum[0]; + String calendarStr = (String) caseDatum[1]; + SemanticSkeleton semanticSkeleton = (SemanticSkeleton) caseDatum[2]; + SemanticSkeletonLength semanticSkeletonLength = (SemanticSkeletonLength) caseDatum[3]; + YearStyle yearStyle = (YearStyle) caseDatum[4]; + String expected = (String) caseDatum[5]; + + ULocale locale = ULocale.forLanguageTag(localeTag); + String localeStr = locale.getName(); + CLDRFile localeCldrFile = GenerateDateTimeTestData.getCLDRFile(localeStr).orElse(null); + assert localeCldrFile != null; + ICUServiceBuilder icuServiceBuilder = new ICUServiceBuilder(); + icuServiceBuilder.clearCache(); + icuServiceBuilder.setCldrFile(localeCldrFile); + + FieldStyleCombo fieldStyleCombo = new FieldStyleCombo(); + fieldStyleCombo.semanticSkeleton = semanticSkeleton; + fieldStyleCombo.semanticSkeletonLength = semanticSkeletonLength; + fieldStyleCombo.yearStyle = yearStyle; + + String actual = + GenerateDateTimeTestData.computeSkeletonFromSemanticSkeleton( + icuServiceBuilder, localeCldrFile, fieldStyleCombo, calendarStr); + + assertEquals( + expected, + actual, + "skeleton string for locale " + + localeStr + + ", calendar " + + calendarStr + + ", semantic skeleton " + + semanticSkeleton.toString() + + ", skeleton length " + + semanticSkeletonLength.getLabel() + + ", year style length " + + yearStyle.getLabel()); + } } - } }